Node.js ကျူတိုရီရယ်

Node.js ပင်မစာမျက်နှာ Node.js နိဒါန်း Node.js ကို စတင်လိုက်ပါ။ Node.js မော်ဂျူးများ Node.js HTTP မော်ဂျူး Node.js ဖိုင်စနစ် Node.js URL မော်ဂျူး Node.js NPM Node.js ပွဲများ Node.js ဖိုင်များ အပ်လုဒ်လုပ်ခြင်း။ Node.js အီးမေးလ်

Node.js MySQL

MySQL စတင်လိုက်ပါ။ MySQL ဒေတာဘေ့စ်ဖန်တီးပါ။ MySQL ဇယားဖန်တီးပါ။ MySQL ထဲသို့ ထည့်သွင်းပါ။ MySQL မှ ရွေးချယ်ပါ။ MySQL ဘယ်မှာလဲ။ MySQL Order By MySQL ကိုဖျက်ပါ။ MySQL Drop Table MySQL အပ်ဒိတ် MySQL ကန့်သတ်ချက် MySQL Join

Node.js MongoDB

MongoDB စတင်လိုက်ပါ။ MongoDB ဒေတာဘေ့စ်ဖန်တီးပါ။ MongoDB သည် Collection ကိုဖန်တီးပါ။ MongoDB ထည့်သွင်းပါ။ MongoDB ကိုရှာပါ။ MongoDB မေးခွန်း MongoDB အမျိုးအစား MongoDB ကိုဖျက်ပါ။ MongoDB Drop Collection MongoDB အပ်ဒိတ် MongoDB ကန့်သတ်ချက် MongoDB Join

Raspberry Pi

RasPi စတင်လိုက်ပါ။ RasPi GPIO နိဒါန်း RasPi မှိတ်တုတ်မှိတ်တုတ် LED RasPi LED နှင့် ခလုတ်နှိပ်ပါ။ RasPi စီးဆင်းနေသော LED များ RasPi WebSocket RasPi RGB LED WebSocket RasPi အစိတ်အပိုင်းများ

Node.js အ ကိုး အကား

Built-in Modules များ

Node.js HTTPS မော်ဂျူး

❮ Built-in Modules


ဥပမာ

သင့်ကွန်ပျူတာ၏ port 8080 တွင် နားထောင်နိုင်သော https ဆာဗာတစ်ခု ဖန်တီးပါ။

port 8080 ကိုဝင်ရောက်သည့်အခါ "Hello World!" ဟုရေးပါ။ တုန့်ပြန်မှုအဖြစ်

var https = require('https');

https.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.write('Hello World!');
  res.end();
}).listen(8080);

အဓိပ္ပါယ်နှင့် အသုံးပြုမှု

HTTPS မော်ဂျူးသည် လုံခြုံသော HTTP ပရိုတိုကောဖြစ်သည့် HTTP TLS/SSL ပရိုတိုကောတွင် Node.js ဒေတာလွှဲပြောင်းခြင်းကို ပြုလုပ်သည့်နည်းလမ်းကို ပံ့ပိုးပေးသည်။


အထားအသို

သင့်အပလီကေးရှင်းတွင် HTTPS module အပါအဝင် အထားအသို-

var https = require('https');

HTTPS ဂုဏ်သတ္တိများနှင့် နည်းလမ်းများ

Method Description
createServer() Creates an HTTPS server
get() Sets the method to GET, and returns an object containing the user's request
globalAgent Returns the HTTPS Agent
request Makes a request to a secure web server

❮ Built-in Modules