10.0.0 • Published 3 years ago

increasee v10.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Increasee

Is a generator of API, is simple and develop fast

  • An simple way for generate a API
const increasee = require('increasee');

increasee.create('/user', ['*', 'GET', 'POST'], (req, res) => {
  res.json({ name: 'John Doe' });
});

increasee.listen(3000, (port) => console.log(`Server listen at http://localhost:${port}`)) 

Proprieties

  • increasee.create
    • url (String)
    • methods (Array),
      ['*', 'GET', 'POST', ...]
    • callback (Function), Params: (port)
  • increasee.listen
    • port (Number)
    • callback (Function), Params: (req, res)
10.0.0

3 years ago

0.1.1

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago