diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-11 23:33:08 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-11 23:33:08 +0800 |
commit | 24814a4f0f634322be8d9430bad45905e255697c (patch) | |
tree | 84b0f39c215d18bd31798754790eee07cd7b86f6 | |
parent | a5907a8239c2d60ee5491ae2a33b105480798c6a (diff) | |
parent | 6188e64473ce3acecf48891880b00ffc91e0c222 (diff) | |
download | go-tangerine-24814a4f0f634322be8d9430bad45905e255697c.tar go-tangerine-24814a4f0f634322be8d9430bad45905e255697c.tar.gz go-tangerine-24814a4f0f634322be8d9430bad45905e255697c.tar.bz2 go-tangerine-24814a4f0f634322be8d9430bad45905e255697c.tar.lz go-tangerine-24814a4f0f634322be8d9430bad45905e255697c.tar.xz go-tangerine-24814a4f0f634322be8d9430bad45905e255697c.tar.zst go-tangerine-24814a4f0f634322be8d9430bad45905e255697c.zip |
Merge branch 'master' of https://github.com/ethereum/ethereum.js
-rw-r--r-- | README.md | 28 |
1 files changed, 26 insertions, 2 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 |