Skip to content

Commit

Permalink
Merge 273d4e2 into 20f9c3c
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrieanKhisbe committed Dec 23, 2015
2 parents 20f9c3c + 273d4e2 commit 17d2433
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 5 deletions.
13 changes: 12 additions & 1 deletion .travis.yml
@@ -1,5 +1,16 @@
sudo: false
language: node_js

node_js:
- "0.10"
- "0.12"
- iojs
- "iojs"
- "4"
- "5"

cache:
directories:
- node_modules

after_script:
npm run coveralls
18 changes: 16 additions & 2 deletions README.md
@@ -1,7 +1,11 @@
# fastfall  [![Build Status](https://travis-ci.org/mcollina/fastfall.svg?branch=master)](https://travis-ci.org/mcollina/fastfall)
# fastfall

[![npm version][npm-badge]][npm-url]
[![Build Status][travis-badge]][travis-url]
[![Coverage Status][coveralls-badge]][coveralls-url]
[![Dependency Status][david-badge]][david-url]

call your callbacks in a waterfall, without overhead
## call your callbacks in a waterfall, without overhead

Benchmark for doing 3 calls `setImmediate` 100 thousands times:

Expand Down Expand Up @@ -216,3 +220,13 @@ function, too. Calls `done` when it has finished.
## License

MIT


[npm-badge]: https://badge.fury.io/js/fastfall.svg
[npm-url]: https://badge.fury.io/js/fastfall
[travis-badge]: https://api.travis-ci.org/mcollina/fastfall.svg
[travis-url]: https://travis-ci.org/mcollina/fastfall
[coveralls-badge]:https://coveralls.io/repos/mcollina/fastfall/badge.svg?branch=master&service=github
[coveralls-url]: https://coveralls.io/github/mcollina/fastfall?branch=master
[david-badge]: https://david-dm.org/mcollina/fastfall.svg
[david-url]: https://david-dm.org/mcollina/fastfall
12 changes: 10 additions & 2 deletions package.json
Expand Up @@ -5,7 +5,9 @@
"main": "fall.js",
"scripts": {
"lint": "standard",
"test": "tape test.js | faucet"
"test": "tape test.js | faucet",
"coverage": "istanbul cover tape test.js | tap-spec",
"coveralls": "npm run coverage ; cat ./coverage/lcov.info | coveralls"
},
"precommit": [
"lint",
Expand All @@ -28,15 +30,21 @@
"url": "https://github.com/mcollina/fastfall/issues"
},
"homepage": "https://github.com/mcollina/fastfall#readme",
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"async": "^1.0.0",
"coveralls": "^2.11.6",
"fastbench": "^1.0.0",
"faucet": "0.0.1",
"insync": "^1.0.0",
"insync": "^2.1.1",
"istanbul": "^0.4.1",
"neo-async": "^1.7.0",
"pre-commit": "^1.0.10",
"run-waterfall": "^1.1.1",
"standard": "^5.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.0.0",
"waterfallize": "^1.0.0"
},
Expand Down

0 comments on commit 17d2433

Please sign in to comment.