4.17.5 • Published 2 years ago

http-node-server v4.17.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Installation

npm install node-server

Usage

const nodeserver = require("http-node-server");
const app = nodeserver()

app.get('/', function (req, res) {
  res.send('Hello World')
})

app.listen(3000)