An open API service indexing awesome lists of open source software.

https://github.com/ndeta100/node-server

Making a simple HTTP server in Node. js with no framework
https://github.com/ndeta100/node-server

http-server nodejs

Last synced: 3 months ago
JSON representation

Making a simple HTTP server in Node. js with no framework

Awesome Lists containing this project

README

          

## Creating a Node js server with http

`.
const http = require('http');
Initiate demo_http.js: C:\Users\Your Name>node demo_http.js.
demo_http_url.js. var http = require('http'); http. createServer(function (req, res) { res. writeHead(200, {'Content-Type': 'text/html'}); res. ...
Initiate demo_http_url.js: C:\Users\Your Name>node demo_http_url.js.`