Skip to content
This repository was archived by the owner on Aug 31, 2024. It is now read-only.

Commit a74c709

Browse files
committed
init
0 parents  commit a74c709

File tree

5 files changed

+94
-0
lines changed

5 files changed

+94
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
.DS_Store*
3+
*.log
4+
*.gz
5+
6+
node_modules
7+
coverage
8+
cache

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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"

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
The MIT License (MIT)
3+
4+
Copyright (c) 2014 Jonathan Ong [email protected]
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.

README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
# http-push
3+
4+
<!-- [![NPM version][npm-image]][npm-url]
5+
[![Latest tag][github-tag]][github-url]
6+
[![Build status][travis-image]][travis-url]
7+
[![Test coverage][coveralls-image]][coveralls-url]
8+
[![Dependency Status][david-image]][david-url]
9+
[![License][license-image]][license-url]
10+
[![Downloads][downloads-image]][downloads-url]
11+
[![Gittip][gittip-image]][gittip-url] -->
12+
13+
This is a placeholder repository for `http-push`.
14+
It will not be actively worked on until node supports HTTP/2.
15+
For now, you should be using [spdy-push](https://github.com/jshttp/spdy-push).
16+
17+
[npm-image]: https://img.shields.io/npm/v/http-push.svg?style=flat-square
18+
[npm-url]: https://npmjs.org/package/http-push
19+
[github-tag]: http://img.shields.io/github/tag/jshttp/http-push.svg?style=flat-square
20+
[github-url]: https://github.com/jshttp/http-push/tags
21+
[travis-image]: https://img.shields.io/travis/jshttp/http-push.svg?style=flat-square
22+
[travis-url]: https://travis-ci.org/jshttp/http-push
23+
[coveralls-image]: https://img.shields.io/coveralls/jshttp/http-push.svg?style=flat-square
24+
[coveralls-url]: https://coveralls.io/r/jshttp/http-push?branch=master
25+
[david-image]: http://img.shields.io/david/jshttp/http-push.svg?style=flat-square
26+
[david-url]: https://david-dm.org/jshttp/http-push
27+
[license-image]: http://img.shields.io/npm/l/http-push.svg?style=flat-square
28+
[license-url]: LICENSE
29+
[downloads-image]: http://img.shields.io/npm/dm/http-push.svg?style=flat-square
30+
[downloads-url]: https://npmjs.org/package/http-push
31+
[gittip-image]: https://img.shields.io/gittip/jonathanong.svg?style=flat-square
32+
[gittip-url]: https://www.gittip.com/jonathanong/

package.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "http-push",
3+
"description": "",
4+
"version": "0.0.0",
5+
"author": {
6+
"name": "Jonathan Ong",
7+
"email": "[email protected]",
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+
}

0 commit comments

Comments
 (0)