https://github.com/mastilver/geth-bin
Binary wrapper for geth
https://github.com/mastilver/geth-bin
Last synced: about 1 month 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-12-23T13:00:01.000Z (over 9 years ago)
- Last Synced: 2025-10-19T11:35:55.343Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# geth-bin [](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)