Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
EggDice committed Apr 21, 2014
0 parents commit 728b16c
Show file tree
Hide file tree
Showing 5 changed files with 108 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
node_modules
coverage
34 changes: 34 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"maxdepth": 2,
"maxlen": 80,
"node": true,
"browser": true,
"globals": {
"describe": true,
"it": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"chai": true,
"expect": true
}
}

5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#set node version to latest stable
language: node_js
node_js:
- "0.10"
- "0.11"
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
formatter-jsonp
===============
[![Build Status](https://travis-ci.org/restify/formatter-binary.svg?branch=refactor/mochaopts)](https://travis-ci.org/restify/formatter-binary)

Installation
============

`npm install restify-formatter-binary`

Usage
=======

```
var restify = require('restify');
var server = restify.createServer();
var binaryFormatter = require('restify-formatter-binary');
server.use(binaryFormatter);
server.listen(8080)
```

License
=======

MIT
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "restify-formatter-binary",
"version": "0.1.0",
"description": "restify-formatter-binary",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --reporter spec test/test.js",
"cover": "./node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha test/test.js -- -u exports -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/restify/formatter-binary.git"
},
"author": "Gergely Nemeth",
"contributors": [
"Tamas Kokeny"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/restify/formatter-binary/issues"
},
"homepage": "https://github.com/restify/formatter-binary",
"devDependencies": {
"mocha": "^1.17.1",
"chai": "^1.9.0",
"istanbul": "^0.2.6"
}
}

0 comments on commit 728b16c

Please sign in to comment.