Guest User

Untitled

a guest
Nov 17th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. const express = require('express');
  2. const app = express();
  3.  
  4. app.get('/', function (req, res) {
  5. res.writeHead(200, {
  6. 'Content-Type': 'text/html'
  7. });
  8.  
  9. res.end("0x6d6f756e69720000000000000000000000000000000000000000000000‌​000000,1,0x500000000‌​00000000000000000000‌​00000000000000000000‌​000000000000000,5");
  10.  
  11. });
  12. app.listen(3000, function () {
  13. console.log('Yep... on 3000 !');
  14. });
Add Comment
Please, Sign In to add comment