-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from spdy-http2/feat/level-up
feat: level up in a couple of things
- Loading branch information
Showing
40 changed files
with
5,078 additions
and
5,113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules/ | ||
.vimrc | ||
npm-debug.log | ||
**.log | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
language: node_js | ||
sudo: false | ||
|
||
language: node_js | ||
|
||
node_js: | ||
- "0.10" | ||
- "0.12" | ||
- "iojs" | ||
- "4" | ||
- "6" | ||
- "stable" | ||
|
||
script: | ||
- npm run lint | ||
- npm test | ||
- npm run coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
'use strict'; | ||
'use strict' | ||
|
||
var transport = exports; | ||
var transport = exports | ||
|
||
// Exports utils | ||
transport.utils = require('./spdy-transport/utils'); | ||
transport.utils = require('./spdy-transport/utils') | ||
|
||
// Export parser&framer | ||
transport.protocol = {}; | ||
transport.protocol.base = require('./spdy-transport/protocol/base'); | ||
transport.protocol.spdy = require('./spdy-transport/protocol/spdy'); | ||
transport.protocol.http2 = require('./spdy-transport/protocol/http2'); | ||
transport.protocol = {} | ||
transport.protocol.base = require('./spdy-transport/protocol/base') | ||
transport.protocol.spdy = require('./spdy-transport/protocol/spdy') | ||
transport.protocol.http2 = require('./spdy-transport/protocol/http2') | ||
|
||
// Window | ||
transport.Window = require('./spdy-transport/window'); | ||
transport.Window = require('./spdy-transport/window') | ||
|
||
// Priority Tree | ||
transport.Priority = require('./spdy-transport/priority'); | ||
transport.Priority = require('./spdy-transport/priority') | ||
|
||
// Export Connection and Stream | ||
transport.Stream = require('./spdy-transport/stream').Stream; | ||
transport.Connection = require('./spdy-transport/connection').Connection; | ||
transport.Stream = require('./spdy-transport/stream').Stream | ||
transport.Connection = require('./spdy-transport/connection').Connection | ||
|
||
// Just for `transport.connection.create()` | ||
transport.connection = transport.Connection; | ||
transport.connection = transport.Connection |
Oops, something went wrong.