web3.js/README.md

116 lines
3.1 KiB
Markdown
Raw Normal View History

2014-09-30 13:55:07 -07:00
# Ethereum JavaScript API
2015-03-22 06:08:22 -07:00
[![Join the chat at https://gitter.im/ethereum/ethereum.js](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ethereum/ethereum.js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
This is the Ethereum compatible [JavaScript API](https://github.com/ethereum/wiki/wiki/JavaScript-API)
2015-02-27 03:41:07 -08:00
which implements the [Generic JSON RPC](https://github.com/ethereum/wiki/wiki/JSON-RPC) spec. It's available on npm as a node module, for bower and component as an embeddable js and as a meteor.js package.
2014-09-30 13:55:07 -07:00
2015-02-17 00:07:55 -08:00
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![dependency status][dep-image]][dep-url] [![dev dependency status][dep-dev-image]][dep-dev-url][![Coverage Status][coveralls-image]][coveralls-url]
2014-11-05 12:33:28 -08:00
<!-- [![browser support](https://ci.testling.com/ethereum/ethereum.js.png)](https://ci.testling.com/ethereum/ethereum.js) -->
2014-11-05 12:33:28 -08:00
2015-02-27 03:41:07 -08:00
You need to run a local ethrereum node to use this library.
2015-02-27 00:54:39 -08:00
[Documentation](https://github.com/ethereum/wiki/wiki/JavaScript-API)
## Installation
### Node.js
2015-02-27 00:54:39 -08:00
$ npm install ethereum.js
### Meteor.js
$ meteor add ethereum:js
2015-03-09 02:28:14 -07:00
### As Browser module
Bower
2015-02-27 00:54:39 -08:00
$ bower install ethereum.js
Component
2015-02-27 00:54:39 -08:00
$ component install ethereum/ethereum.js
2015-03-09 02:28:14 -07:00
* Include `ethereum.min.js` in your html file. (not required for the meteor package)
* Include [bignumber.js](https://github.com/MikeMcl/bignumber.js/) (not required for the meteor package)
## Usage
2015-03-09 02:28:14 -07:00
Require the library (not required for the meteor package):
var web3 = require('ethereum.js');
2015-02-27 00:54:39 -08:00
Set a provider (QtSyncProvider, HttpProvider)
2015-02-27 00:54:39 -08:00
web3.setProvider(new web3.providers.HttpProvider('http://localhost:8545'));
There you go, now you can use it:
```
var coinbase = web3.eth.coinbase;
var balance = web3.eth.getBalance(coinbase);
```
For another example see `example/index.html`.
2015-02-27 00:54:39 -08:00
## Contribute!
### Requirements
* Node.js
* npm
```bash
sudo apt-get update
sudo apt-get install nodejs
sudo apt-get install npm
sudo apt-get install nodejs-legacy
```
2015-01-15 05:30:34 -08:00
### Building (gulp)
2015-01-15 05:30:34 -08:00
```bash
npm run-script build
```
2015-01-15 05:30:34 -08:00
### Testing (mocha)
2014-09-30 13:55:07 -07:00
2015-01-15 05:30:34 -08:00
```bash
npm test
```
### Testing (karma)
2015-03-06 01:06:50 -08:00
Karma allows testing within one or several browsers.
```bash
2015-03-06 01:06:50 -08:00
npm run-script karma # default browsers are Chrome and Firefox
npm run-script karma -- --browsers="Chrome,Safari" # custom browsers
```
2014-09-30 13:55:07 -07:00
**Please note this repo is in it's early stage.**
2014-09-30 13:58:09 -07:00
2015-03-03 15:27:06 -08:00
If you'd like to run a Http ethereum node check out
[cpp-ethereum](https://github.com/ethereum/cpp-ethereum).
2014-09-30 13:58:09 -07:00
2015-03-03 15:27:06 -08:00
Install ethereum and spawn a node:
2014-09-30 13:58:09 -07:00
```
2015-03-03 15:27:06 -08:00
eth -j
2014-09-30 13:58:09 -07:00
```
2014-11-05 12:33:28 -08:00
2014-11-09 11:30:27 -08:00
[npm-image]: https://badge.fury.io/js/ethereum.js.png
[npm-url]: https://npmjs.org/package/ethereum.js
[travis-image]: https://travis-ci.org/ethereum/ethereum.js.svg
[travis-url]: https://travis-ci.org/ethereum/ethereum.js
[dep-image]: https://david-dm.org/ethereum/ethereum.js.svg
[dep-url]: https://david-dm.org/ethereum/ethereum.js
[dep-dev-image]: https://david-dm.org/ethereum/ethereum.js/dev-status.svg
[dep-dev-url]: https://david-dm.org/ethereum/ethereum.js#info=devDependencies
2015-02-17 00:15:20 -08:00
[coveralls-image]: https://coveralls.io/repos/ethereum/ethereum.js/badge.svg?branch=master
[coveralls-url]: https://coveralls.io/r/ethereum/ethereum.js?branch=master