diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-12 00:12:29 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-12 00:12:29 +0800 |
commit | e2c4525da7a4d50fdba088837853494ef3de9dd7 (patch) | |
tree | 6175aca9c133b94a90541ba64c8871e02609cda3 | |
parent | 47687cf085196e2e4fa7ec42ff426f241dae10c5 (diff) | |
parent | 6188e64473ce3acecf48891880b00ffc91e0c222 (diff) | |
download | go-tangerine-e2c4525da7a4d50fdba088837853494ef3de9dd7.tar go-tangerine-e2c4525da7a4d50fdba088837853494ef3de9dd7.tar.gz go-tangerine-e2c4525da7a4d50fdba088837853494ef3de9dd7.tar.bz2 go-tangerine-e2c4525da7a4d50fdba088837853494ef3de9dd7.tar.lz go-tangerine-e2c4525da7a4d50fdba088837853494ef3de9dd7.tar.xz go-tangerine-e2c4525da7a4d50fdba088837853494ef3de9dd7.tar.zst go-tangerine-e2c4525da7a4d50fdba088837853494ef3de9dd7.zip |
Merge branch 'master' into develop
-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 |