Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var express = require("express"),
  2. app = express();
  3.  
  4. app.get("/", function(req, res){
  5. res.send("Hello");
  6. });
  7.  
  8. app.listen(process.env.PORT, process.env.IP, function(){
  9. console.log("The Server Started");
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement