0.9.3-2 • Published 5 years ago

app3-providers-http v0.9.3-2

Weekly downloads
3
License
LGPL-3.0
Repository
github
Last release
5 years ago

app3-providers-http

This is a sub package of app3js

This is a HTTP provider for app3js.
Please read the documentation for more.

Installation

Node.js

npm install app3-providers-http

In the Browser

Build running the following in the app3js repository:

npm run-script build-all

Then include dist/app3-providers-http.js in your html file. This will expose the HttpProvider object on the window object.

Usage

// in node.js
var HttpProvider = require('app3-providers-http');

var options = {
    timeout: 20000, // milliseconds,
    headers: [{name: 'Access-Control-Allow-Origin', value: '*'},{...}]
};
var http = new HttpProvider('http://localhost:8545', options);