thieumao

Hello World Node.js - localhost:3000

Jan 23rd, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const http = require('http');
  2.  
  3. http.createServer( function(request, response) {
  4.   console.log("Hello World");
  5. } ).listen(3000)
Advertisement
Add Comment
Please, Sign In to add comment