diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-11 23:36:38 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-11 23:36:38 +0800 |
commit | 048e7771fb6ca7a8093a799768a816fdef69f5dc (patch) | |
tree | ff008e8eebe07ff52bd59845ce7cc18c0866daf9 | |
parent | 29c60c000ad81805e73477de51f4acc62acafa68 (diff) | |
parent | 15c229300c2fecdf3966e7e23d0afcbb7b3d9788 (diff) | |
download | go-tangerine-048e7771fb6ca7a8093a799768a816fdef69f5dc.tar go-tangerine-048e7771fb6ca7a8093a799768a816fdef69f5dc.tar.gz go-tangerine-048e7771fb6ca7a8093a799768a816fdef69f5dc.tar.bz2 go-tangerine-048e7771fb6ca7a8093a799768a816fdef69f5dc.tar.lz go-tangerine-048e7771fb6ca7a8093a799768a816fdef69f5dc.tar.xz go-tangerine-048e7771fb6ca7a8093a799768a816fdef69f5dc.tar.zst go-tangerine-048e7771fb6ca7a8093a799768a816fdef69f5dc.zip |
Merge branch 'master' into tests
-rw-r--r-- | README.md | 28 | ||||
-rw-r--r-- | package.json | 3 |
2 files changed, 28 insertions, 3 deletions
@@ -50,13 +50,37 @@ web3.eth.coinbase.then(function(result){ For another example see `example/index.html`. +## Contribute! + +### Requirements + +* Node.js +* npm +* gulp (build) +* mocha (tests) + +```bash +sudo apt-get update +sudo apt-get install nodejs +sudo apt-get install npm +sudo apt-get install nodejs-legacy +sudo npm install -g gulp +sudo npm install -g mocha +``` + ## Building -* `gulp build` +```bash +gulp +``` ### Testing +```bash +mocha +``` + **Please note this repo is in it's early stage.** If you'd like to run a WebSocket ethereum node check out @@ -76,4 +100,4 @@ ethereum -ws -loglevel=4 [dep-image]: https://david-dm.org/ethereum/ethereum.js.svg [dep-url]: https://david-dm.org/ethereum/ethereum.js [dep-dev-image]: https://david-dm.org/ethereum/ethereum.js/dev-status.svg -[dep-dev-url]: https://david-dm.org/ethereum/ethereum.js#info=devDependencies
\ No newline at end of file +[dep-dev-url]: https://david-dm.org/ethereum/ethereum.js#info=devDependencies diff --git a/package.json b/package.json index fc34be487..6d032d72d 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,8 @@ "jshint": ">=2.5.0", "uglifyify": "^2.6.0", "unreachable-branch-transform": "^0.1.0", - "vinyl-source-stream": "^1.0.0" + "vinyl-source-stream": "^1.0.0", + "mocha": ">=2.1.0" }, "scripts": { "build": "gulp", |