Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/ethereum/node-ethereum

[DEPRECATED] a simple standalone or embeddable Ethereum client written for Node.js
https://github.com/ethereum/node-ethereum

Last synced: 4 months ago
JSON representation

[DEPRECATED] a simple standalone or embeddable Ethereum client written for Node.js

Lists

README

        

node-ethereum [![Build Status](https://travis-ci.org/ethereum/node-ethereum.svg)](https://travis-ci.org/ethereum/node-ethereum)
===============
[DEPRECATED]
this is being broken into micro-services, Like
- [node blockchain server](https://github.com/ethereum/node-blockchain-server)

Install
===
`git clone https://github.com/ethereum/node-ethereum`
`cd ./node-ethereum`
`npm install .`

Run
===
`./bin/neth`

Embed
===
```javacsript
App = require('../')
app = new App();
app.start(function(){
console.log("Ethereum has started");
});
```