This is a description of the project And here is a link to npm its zero to hero guide is here learn
import express from 'express'
const app = express()
app.get('/', (req, res) => {
res.send('Hello World')
})
app.listen(3000)
npm is a package manager
const imports = require('./first-module')
console.log(imports.add(1, 3))