Creating a Node Server
Core modules:
http
: launch a server, send requesthttps
: launch a SSL encrypted serverfs
: file systempath
: constructing apthsos
1 | // app.js |
Sending response
1 | const server = http.createServer((req, res) => { |
Routing Request
1 |
|