├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store* 3 | *.log 4 | *.gz 5 | 6 | node_modules 7 | coverage 8 | cache 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | node_js: 2 | - "0.8" 3 | - "0.10" 4 | - "0.11" 5 | language: node_js 6 | script: "npm run-script test-travis" 7 | before_install: "npm update -g npm" 8 | after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls" 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | The MIT License (MIT) 3 | 4 | Copyright (c) 2014 Jonathan Ong me@jongleberry.com 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > [!CAUTION] 2 | > **This repository is archived and no longer actively maintained.** 3 | > 4 | > We are no longer accepting issues, feature requests, or pull requests. 5 | > For additional support or questions, please visit the [Express.js Discussions page](https://github.com/expressjs/express/discussions). 6 | 7 | 8 | 9 | # http-push 10 | 11 | 19 | 20 | This is a placeholder repository for `http-push`. 21 | It will not be actively worked on until node supports HTTP/2. 22 | For now, you should be using [spdy-push](https://github.com/jshttp/spdy-push). 23 | 24 | [npm-image]: https://img.shields.io/npm/v/http-push.svg?style=flat-square 25 | [npm-url]: https://npmjs.org/package/http-push 26 | [github-tag]: http://img.shields.io/github/tag/jshttp/http-push.svg?style=flat-square 27 | [github-url]: https://github.com/jshttp/http-push/tags 28 | [travis-image]: https://img.shields.io/travis/jshttp/http-push.svg?style=flat-square 29 | [travis-url]: https://travis-ci.org/jshttp/http-push 30 | [coveralls-image]: https://img.shields.io/coveralls/jshttp/http-push.svg?style=flat-square 31 | [coveralls-url]: https://coveralls.io/r/jshttp/http-push?branch=master 32 | [david-image]: http://img.shields.io/david/jshttp/http-push.svg?style=flat-square 33 | [david-url]: https://david-dm.org/jshttp/http-push 34 | [license-image]: http://img.shields.io/npm/l/http-push.svg?style=flat-square 35 | [license-url]: LICENSE 36 | [downloads-image]: http://img.shields.io/npm/dm/http-push.svg?style=flat-square 37 | [downloads-url]: https://npmjs.org/package/http-push 38 | [gittip-image]: https://img.shields.io/gittip/jonathanong.svg?style=flat-square 39 | [gittip-url]: https://www.gittip.com/jonathanong/ 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "http-push", 3 | "description": "", 4 | "version": "0.0.0", 5 | "author": { 6 | "name": "Jonathan Ong", 7 | "email": "me@jongleberry.com", 8 | "url": "http://jongleberry.com", 9 | "twitter": "https://twitter.com/jongleberry" 10 | }, 11 | "license": "MIT", 12 | "repository": "jshttp/http-push", 13 | "dependencies": {}, 14 | "devDependencies": { 15 | "istanbul": "0", 16 | "mocha": "1" 17 | }, 18 | "scripts": { 19 | "test": "mocha --reporter spec", 20 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", 21 | "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot" 22 | }, 23 | "keywords": [] 24 | } --------------------------------------------------------------------------------