filestack-loader
## Installation
Last updated 7 years ago by filestack-dev .
SEE LICENSE IN LICENSE · Original npm
$ cnpm install filestack-loader 
SYNC missed versions from official npm registry.

Loader

Installation

npm install filestack-loader

Usage

Loading JavaScript Modules

If you have two modules a.js and b.js and you want to load b into a...

// file a.js
import loader from 'loader';

loader.loadModule('url/to/b.js').then((b) => {
  b.helloWorld();
});
// file b.js
import loader from 'loader';

const api = {
  helloWorld() {
    console.log('Hello world!');
  },
};

// Module need to "tell" the loader that it's loaded and ready.
loader.registerReadyModule(api);

Loading CSS

import loader from 'loader';

loader.loadCss('url/to/style.css').then(() => {
  console.log('Style loaded!');
});

Development

Setup

npm install

Testing

Unit

npm test

This command opens in the browser semi-manual tests. Those tests don't have watch, so you need to refire the command with each change.

Current Tags

  • 3.0.4                                ...           latest (7 years ago)

1 Versions

  • 3.0.4                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (10)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org