Skip to content

Releases: BackendStack21/restana

Documentation update

15 Dec 11:16
Compare
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
Compare
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
Compare
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
Compare
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
Compare
Choose a tag to compare

Changes:

  • Adding middlewares registration example to docs

PR: #100

Updating TypeScript definitions

26 Jul 20:03
Compare
Choose a tag to compare

Changes:

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

v4.7.0

28 Jul 18:10
Compare
Choose a tag to compare
v4.7.0

Improving error handling docs

12 Jul 17:57
Compare
Choose a tag to compare

Changes:

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

Improving documentation

31 May 19:16
Compare
Choose a tag to compare

Changes:

  • Improving documentation.

Add unit tests, perf tests, and functionality for send(<Promise>)

31 May 09:02
Compare
Choose a tag to compare

Changes:

  • Add unit tests, perf tests, and functionality for send()

PR: #93

Thanks @edreesjalili for pushing this released ❤️