Skip to content

Releases: BackendStack21/restana

Updating dependencies

01 May 12:02

Choose a tag to compare

Changes:

  • Updating dependencies.

Service Events

01 May 11:31

Choose a tag to compare

Changes:

  • Introducing service events.
  • Updating documentation related to error handling.
  • Updating documentation related to donations and funding.
  • Dependencies were updated to latest versions.

Documentation update

15 Dec 11:16

Choose a tag to compare

Changes:

  • Updating benchmarks results in README.md
  • Refactor badges in README.md

Supporting http.createServer hook

10 Oct 20:28

Choose a tag to compare

Added:

  • Support for http.createServerhook:
const http = require('http')
const service = require('restana')()

service.get('/hi', (req, res) => {
  res.send({
    msg: 'Hello World!'
  })
})

http.createServer(service).listen(3000, '0.0.0.0', function () {
  console.log('running')
})

Big Thanks to @schamberg97 for this contribution.

Updating dependencies

13 Sep 09:32
bb8e9de

Choose a tag to compare

Dependencies were updated to latest versions.

Travis CI build now includes multiple Node.js versions:

  • 10
  • 12
  • 14

Updating docs

22 Aug 20:43

Choose a tag to compare

Changes:

  • Updating documentation
  • Rename repository to from ana to restana for more consistency. Closes #103
  • Updating dev dependencies

Improving documentation

04 Aug 17:34

Choose a tag to compare

Changes:

  • Adding middlewares registration example to docs

PR: #100

Updating TypeScript definitions

26 Jul 20:03

Choose a tag to compare

Changes:

  • Updates TypeScript definitions to consider multiple paths on routes registration shortcuts

v4.7.0

28 Jul 18:10

Choose a tag to compare

v4.7.0

Improving error handling docs

12 Jul 17:57

Choose a tag to compare

Changes:

  • Error handling documentation was improved. More details: #81 (comment)