Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)