0.0.4 • Published 6 months ago

zept v0.0.4

Weekly downloads
-
License
-
Repository
github
Last release
6 months ago

Installation

npm install --save-dev zept

Usage

const { zept } = require('zept');
const routes = [
  {
    path: '/',
    module: (req, res) => {
      res.end('Hello World');
    },
  },
  {
    path: '/book/:id',
    module: (req, res) => {
      res.end(req.params.id);
    },
  },
];

zept(routes).listen(3000);

License

MIT

0.0.4

6 months ago

0.0.3

8 months ago

0.0.2

8 months ago

0.0.1

8 months ago

0.0.0

8 months ago