ethereum / node-ethereum

[DEPRECATED] a simple standalone or embeddable Ethereum client written for Node.js
GNU General Public License v2.0
46 stars 38 forks source link

node-ethereum Build Status

[DEPRECATED]
this is being broken into micro-services, Like

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");
 });