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: about 2 months ago
JSON representation
[DEPRECATED] a simple standalone or embeddable Ethereum client written for Node.js
- Host: GitHub
- URL: https://github.com/ethereum/node-ethereum
- Owner: ethereum
- License: gpl-2.0
- Fork: true (d11e9/node-ethereum)
- Created: 2014-10-08T20:07:16.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-09T21:04:15.000Z (almost 9 years ago)
- Last Synced: 2024-09-25T13:27:55.642Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 820 KB
- Stars: 46
- Watchers: 17
- Forks: 38
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ethereum - NodeJS Client - NodeJS Client. (Foundation {#foundation})
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");
});
```