Guest User

Untitled

a guest
May 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //server.mp3
  2.  
  3.  
  4. var express = require('express');
  5. var app = express();
  6. app.get("/", function (req, res) {
  7. res.sendFile(__dirname + '/index.html')
  8. })
  9. app.listen(3000, function () {
  10. console.log("Listening at 3000")
  11. });
  12.  
  13. node server.mp3
Add Comment
Please, Sign In to add comment