1.1.5 • Published 6 years ago

@dreesq/mamba v1.1.5

Weekly downloads
12
License
ISC
Repository
github
Last release
6 years ago

mamba

Fast, express compatible http web server using uWebSockets.js

const mamba = require('@dreesq/mamba');

const app = mamba();
let i = 0;

const test = async (req, res, next) => {
    ++i;
    next();
};

app.get('/:x', test, async (req, res) => {
    res.end(`${i}-${req.params.x}`);
});

app.listen(8080, () => console.log('listening on port 8080'));
1.1.5

6 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago