Streamich JavaScript API Client over JSONP
This library is browser client for api.streamich.com
. It has exactly the same features as streamich-api-js
library,
but instead of using reqwest
for executing HTTP request this library uses a built-in JSONP
client, which makes this
library some 4x smaller.
Usage
Standalone library.
Take the streamich-api-jsonp.js
file from /build
directory.
Include it in your web project:
This will export a global object StreamichApi
, which you use as follows:
var api = ; api;
With Webpack, Browserify, Require.js
You can also use this library as a module in Webpack, Browserify, or Require.js bundle.
Install the library:
npm install streamich-api-jsonp
Use it as follows:
var StreamichApi = ; var api = ; api;
API
For full command reference see streamich-api
.
api;api;apithings;// etc...
Development
webpack -p
git ...
npm publish