Skip to content

Instantly share code, notes, and snippets.

@kshitijcode
Created February 17, 2021 03:40
Show Gist options
  • Save kshitijcode/1ed6915240ed051d0ea3eabad90fcda2 to your computer and use it in GitHub Desktop.
Save kshitijcode/1ed6915240ed051d0ea3eabad90fcda2 to your computer and use it in GitHub Desktop.
const express = require('express')
const app = express()
const port = 3001
app.get('/play', (req, res) => {
res.send('Service B')
})
app.listen(port, () => {
console.log(`Service B is listening at http://localhost:${port}`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment