This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a74c709
Showing
5 changed files
with
94 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
.DS_Store* | ||
*.log | ||
*.gz | ||
|
||
node_modules | ||
coverage | ||
cache |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
node_js: | ||
- "0.8" | ||
- "0.10" | ||
- "0.11" | ||
language: node_js | ||
script: "npm run-script test-travis" | ||
before_install: "npm update -g npm" | ||
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls" |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Jonathan Ong me@jongleberry.com | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
# http-push | ||
|
||
<!-- [![NPM version][npm-image]][npm-url] | ||
[![Latest tag][github-tag]][github-url] | ||
[![Build status][travis-image]][travis-url] | ||
[![Test coverage][coveralls-image]][coveralls-url] | ||
[![Dependency Status][david-image]][david-url] | ||
[![License][license-image]][license-url] | ||
[![Downloads][downloads-image]][downloads-url] | ||
[![Gittip][gittip-image]][gittip-url] --> | ||
|
||
This is a placeholder repository for `http-push`. | ||
It will not be actively worked on until node supports HTTP/2. | ||
For now, you should be using [spdy-push](https://github.com/jshttp/spdy-push). | ||
|
||
[npm-image]: https://img.shields.io/npm/v/http-push.svg?style=flat-square | ||
[npm-url]: https://npmjs.org/package/http-push | ||
[github-tag]: http://img.shields.io/github/tag/jshttp/http-push.svg?style=flat-square | ||
[github-url]: https://github.com/jshttp/http-push/tags | ||
[travis-image]: https://img.shields.io/travis/jshttp/http-push.svg?style=flat-square | ||
[travis-url]: https://travis-ci.org/jshttp/http-push | ||
[coveralls-image]: https://img.shields.io/coveralls/jshttp/http-push.svg?style=flat-square | ||
[coveralls-url]: https://coveralls.io/r/jshttp/http-push?branch=master | ||
[david-image]: http://img.shields.io/david/jshttp/http-push.svg?style=flat-square | ||
[david-url]: https://david-dm.org/jshttp/http-push | ||
[license-image]: http://img.shields.io/npm/l/http-push.svg?style=flat-square | ||
[license-url]: LICENSE | ||
[downloads-image]: http://img.shields.io/npm/dm/http-push.svg?style=flat-square | ||
[downloads-url]: https://npmjs.org/package/http-push | ||
[gittip-image]: https://img.shields.io/gittip/jonathanong.svg?style=flat-square | ||
[gittip-url]: https://www.gittip.com/jonathanong/ |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "http-push", | ||
"description": "", | ||
"version": "0.0.0", | ||
"author": { | ||
"name": "Jonathan Ong", | ||
"email": "me@jongleberry.com", | ||
"url": "http://jongleberry.com", | ||
"twitter": "https://twitter.com/jongleberry" | ||
}, | ||
"license": "MIT", | ||
"repository": "jshttp/http-push", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"istanbul": "0", | ||
"mocha": "1" | ||
}, | ||
"scripts": { | ||
"test": "mocha --reporter spec", | ||
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", | ||
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot" | ||
}, | ||
"keywords": [] | ||
} |