kelp
Version:
dead simple nodejs http web framework
27 lines (19 loc) • 416 B
Markdown
firstly, download [node.js][node.js] from [node.js official website ][node.js], and ...
```bash
~$ mkdir myapp
~$ git init
~$ npm init
~$ npm install kelp --save
```
```js
const http = require('http');
const kelp = require('kelp');
const app = kelp();
app.use(async (req, res, next) => {
res.end('hello world');
});
http.createServer(app).listen(3000);
```
---
[]:(https://nodejs.org)