Answers for "express js syntax"

49

express js basic example

//to run : node filename.js
const express = require('express')
const app = express()
const port = 3000

app.get('/', (req, res) => res.send('Hello World!'))

app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`))

//visit localhost:3000
// assuming you have done 1) npm init 2) npm install express
Posted by: Guest on July-17-2020
11

express js

$ npm install express --no-save
Posted by: Guest on April-20-2020
4

express js

const express = require('express')
const app = express()
const port = 3000

app.get('/', (req, res) => {
  res.send('Hello World!')
})

app.listen(port, () => {
  console.log(`Example app listening at http://localhost:${port}`)
})
Posted by: Guest on November-26-2020
0

express

npm install express
npm install express --save
Docs : https://expressjs.com/
- Example API : https://jareer.xyz/ -
Posted by: Guest on February-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language