Advertisement
Teerathornmoon3

Get URL For Online Bot

Aug 1st, 2021
6,538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const express = require('express')
  2. const app = express();
  3. const port = 8000
  4.  
  5. app.get('/' , (req,res) => res.send('Working!'))
  6. app.listen( port , () =>
  7.   console.log(`Your app is listening a http://localhost:${port}`)
  8. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement