diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-11 23:25:41 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-11 23:25:41 +0800 |
commit | 6188e64473ce3acecf48891880b00ffc91e0c222 (patch) | |
tree | e23d5834ac358f7e0ed29f6e3bfdc9f6c626b81e | |
parent | c34b0c67a1670cf1d22f3887f12a0fef0f523421 (diff) | |
download | go-tangerine-6188e64473ce3acecf48891880b00ffc91e0c222.tar go-tangerine-6188e64473ce3acecf48891880b00ffc91e0c222.tar.gz go-tangerine-6188e64473ce3acecf48891880b00ffc91e0c222.tar.bz2 go-tangerine-6188e64473ce3acecf48891880b00ffc91e0c222.tar.lz go-tangerine-6188e64473ce3acecf48891880b00ffc91e0c222.tar.xz go-tangerine-6188e64473ce3acecf48891880b00ffc91e0c222.tar.zst go-tangerine-6188e64473ce3acecf48891880b00ffc91e0c222.zip |
Update README.md
-rw-r--r-- | README.md | 42 |
1 files changed, 25 insertions, 17 deletions
@@ -7,22 +7,6 @@ which implements the [Generic JSON RPC](https://github.com/ethereum/wiki/wiki/Ge <!-- [![browser support](https://ci.testling.com/ethereum/ethereum.js.png)](https://ci.testling.com/ethereum/ethereum.js) --> -## 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 -``` - ## Installation ### Node.js @@ -66,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 |