Skip to content

Commit

Permalink
Updating router, major version bump for new engine requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
avoidwork committed Nov 23, 2017
1 parent b93b6cc commit e891b73
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: node_js
node_js:
- node
- 8
- 7

branches:
only:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Tensō

[![build status](https://secure.travis-ci.org/avoidwork/tenso.svg)](http://travis-ci.org/avoidwork/tenso)

Tensō is a REST API gateway for node.js, designed to simplify the implementation of APIs.
Tensō is a REST API gateway for node.js, designed to simplify the implementation of APIs. HTTP2 is supported!

Tensō will handle the serialization & creation of hypermedia links, all you have to do is give it `Arrays` or `Objects`.

Expand Down Expand Up @@ -91,6 +91,7 @@ This is a sample configuration for Tensō, without authentication or SSL. This w
"compress": false, /* Optional, enabled by default */
"headers": {}, /* Optional, custom headers */
"hostname": "localhost", /* Optional, default is 'localhost' */
"http2": false, /* Middleware signatures do not change, see woodland */
"json": 0, /* Optional, default indent for 'pretty' JSON */
"logging": {
"level": "info", /* Optional */
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tenso",
"description": "Tensō is an elastic REST API gateway for node.js",
"version": "5.2.14",
"version": "6.0.0",
"homepage": "http://avoidwork.github.io/tenso",
"author": "Jason Mulligan <[email protected]>",
"repository": {
Expand All @@ -15,7 +15,7 @@
"main": "index",
"engineStrict": true,
"engines": {
"node": ">=7.0.0"
"node": ">=8.4.0"
},
"scripts": {
"test": "grunt test"
Expand Down Expand Up @@ -49,7 +49,7 @@
"tiny-uuid4": "^1.0.1",
"tiny-xml": "^1.0.6",
"uws": "^8.14.1",
"woodland": "^3.0.9",
"woodland": "^4.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
Expand Down Expand Up @@ -77,6 +77,9 @@
"sockets",
"socket",
"coap",
"iot"
"iot",
"http",
"http2",
"https"
]
}

0 comments on commit e891b73

Please sign in to comment.