BackendStack21 / restana

Restana is a lightweight and fast Node.js framework for building RESTful APIs.
MIT License
467 stars 27 forks source link

Fix method chaining #65

Closed jkyberneees closed 4 years ago

jkyberneees commented 4 years ago

Fixes method chaining for .use and routes registration like .get, .post, ...

app
  .use(...)
  .use(...)
  .get(...)
  .start(3000)