Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mastilver/geth-bin
Binary wrapper for geth
https://github.com/mastilver/geth-bin
Last synced: 5 days ago
JSON representation
Binary wrapper for geth
- Host: GitHub
- URL: https://github.com/mastilver/geth-bin
- Owner: mastilver
- License: mit
- Created: 2015-12-16T21:59:41.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-23T13:00:01.000Z (almost 8 years ago)
- Last Synced: 2024-10-12T04:26:37.642Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# geth-bin [![Build Status](https://travis-ci.org/mastilver/geth-bin.svg?branch=master)](https://travis-ci.org/mastilver/geth-bin)
> Binary wrapper for [geth](https://github.com/ethereum/go-ethereum)
## CLI
```
$ npm install --global geth-bin
``````
$ geth help
```## API
```
$ npm install --save geth-bin
``````js
const execFile = require('child_process').execFile;
const geth = require('geth-bin');execFile(geth, ['version'], (err, stdout) => {
console.log(stdout);
});
```## License
MIT © [Thomas Sileghem](http://mastilver.com)