app3-providers-http

Module to handle app3js RPC connections over HTTP.

Usage no npm install needed!

<script type="module">
  import app3ProvidersHttp from 'https://cdn.skypack.dev/app3-providers-http';
</script>

README

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);