V35HR4J / nodeJS-snippets

Collection of useful nodeJS snippets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Collection of useful NodeJS code snippets.

Example:

var http = require('http');

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

PS: Code snippets will be added soon.

About

Collection of useful nodeJS snippets