0.1.0 • Published 4 years ago

@nimbu/api v0.1.0

Weekly downloads
3
License
MIT
Repository
-
Last release
4 years ago

Thin abstraction layer for the Nimbu API for modern browsers

When we say "modern browsers" we mean a browser with:

Polyfilling these on older browsers will also work.

The files distributed in the package are compiled to ES6. If you need support for older browsers, you need to configure your packager to compile files in node_modules to ES5.

This library is written in TypeScript and provides bundled type declarations for usage with TypeScript.

Usage with node

To use this library with node, insert the following before requiring this library:

const fetch = require('node-fetch');
const FormData = require('form-data');
global.fetch = fetch;
global.FormData = FormData;