Go to file
Wilfried Kopp 833b810038 doc(readme): Information about Karma in the readme
test(karma): Fix variable to make linter happy
2015-03-06 01:14:01 +01:00
dist Merge branch 'event_hash' 2015-03-04 01:04:13 +01:00
example event_inc example 2015-02-02 11:52:56 +01:00
lib test(utils): Add test for the toEth() function 2015-03-06 01:03:19 +01:00
test test(utils): Add test for the toEth() function 2015-03-06 01:03:19 +01:00
.bowerrc Converted to node module 2014-11-05 19:46:01 +02:00
.editorconfig Updated bower.json & Readme 2014-11-05 22:33:28 +02:00
.gitignore travis coveralls 2015-02-17 08:59:19 +01:00
.jshintrc jshint is more strict 2015-02-25 15:53:28 +01:00
.npmignore Refactoring 2014-11-06 22:51:37 +02:00
.travis.yml travis coveralls 2015-02-16 22:53:04 +01:00
LICENSE Converted to node module 2014-11-05 19:46:01 +02:00
README.md doc(readme): Information about Karma in the readme 2015-03-06 01:14:01 +01:00
bower.json version 2015-03-04 00:46:53 +01:00
gulpfile.js jshint is more strict 2015-02-25 15:53:28 +01:00
index.js providermanager -> requestmanager 2015-02-06 00:02:14 +01:00
karma.conf.js doc(readme): Information about Karma in the readme 2015-03-06 01:14:01 +01:00
package.json Remove phantomjs 2015-03-05 23:20:55 +01:00

README.md

Ethereum JavaScript API

This is the Ethereum compatible JavaScript API which implements the Generic JSON RPC spec. It's available on npm as a node module and also for bower and component as an embeddable js

NPM version Build Status dependency status dev dependency statusCoverage Status

Installation

Node.js

npm install ethereum.js

For browser

Bower

bower install ethereum.js

Component

component install ethereum/ethereum.js
  • Include ethereum.min.js in your html file.
  • Include bignumber.js

Usage

Require the library:

var web3 = require('web3');

Set a provider (QtSyncProvider, HttpSyncProvider)

web3.setProvider(new web3.providers.HttpSyncProvider());

There you go, now you can use it:

var coinbase = web3.eth.coinbase;
var balance = web3.eth.balanceAt(coinbase);

For another example see example/index.html.

Contribute!

Requirements

  • Node.js
  • npm
  • gulp (build)
  • mocha (tests)
sudo apt-get update
sudo apt-get install nodejs
sudo apt-get install npm
sudo apt-get install nodejs-legacy

Building (gulp)

npm run-script build

Testing (mocha)

npm test

Testing (karma)

Karma allows testing within one or several browser.

karma start --singleRun=true --browsers="Chrome,Firefox"

Please note this repo is in it's early stage.

If you'd like to run a Http ethereum node check out cpp-ethereum.

Install ethereum and spawn a node:

eth -j