1.2.1 • Published 9 years ago

node-ethereum v1.2.1

Weekly downloads
4
License
GPL2
Repository
github
Last release
9 years ago

node-ethereum Build Status

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