asm-async-loader

1.0.1 • Public • Published

npm node deps

ASM Async Loader

A loader for webpack that lets you import asm scripts in async mode to let the browser do async compilation.

Install

npm install --save-dev npm-async-loader

Usage

Use the loader either via your webpack config, CLI or inline.

Via webpack config (recommended)

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        use: 'asm-async-loader'
      }
    ]
  }
}

In your application

import promise from './asm-script.js';

promise
    .then(function() {
        //your script usage
    })
    .catch(function(err) {
        //script loading failed
    });

Inline

In your application

import promise from 'asm-async-loader!./asm-script.js';

promise
    .then(function() {
        //your script usage
    })
    .catch(function(err) {
        //script loading failed
    });

Readme

Keywords

Package Sidebar

Install

npm i asm-async-loader

Weekly Downloads

4

Version

1.0.1

License

MIT

Last publish

Collaborators

  • paztis