node-ethereum
v1.2.1
Published
a simple standalone or embeddable Ethereum client written for Node.js
Downloads
22
Readme
node-ethereum
STILL UNSTABLE
a simple standalone or embeddable Ethereum client written for Node.js.
Install
git clone https://github.com/ethereum/node-ethereum
cd ./node-ethereum
npm install .
Run
./bin/neth
Embed
App = require('../')
app = new App();
app.start(function(){
console.log("Ethereum has started");
});