Socket
Book a DemoInstallSign in
Socket

async-asset

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-asset

async loading of stylesheet and javascript files

latest
Source
npmnpm
Version
0.0.5
Version published
Maintainers
2
Created
Source

async-asset

Asynchronously load front-end assets. And with async, we mean truly async. Loading scripts async isn't that hard but loading a CSS file fully async in a cross browser manner can be utterly painful. Especially when you try to do this in the front-end's worst enemy, Internet Explorer. It has limitations on the amount of style sheets that can be loaded on a single page. So we need to make sure that we do not reach these limitations by using clever tricks. (Which we are doing of course).

Installation

This module exposes a Node.js (module.exports) interface for loading the module so you should be using browserify to compile the assets in to a single file. The code it self is released through npm as you might have expected and can be installed by running:

npm install --save async-asset

Usage

Require the module:

'use strict';

var AsyncAsset = require('async-asset');

And construct a new instance.

var assets = new AsyncAsset(root, { options });

In the function signature above you can see that it receives 2 arguments:

  • The root element where we append all script/link instances to.
  • The options object which allows you further configure the object. The following options are accepted:
    • document Document instance where we call the createElement on.
    • timeout Amount of milliseconds we allow the resource to load until call all callbacks with an timeout error.
    • onload Indication if style sheets call the onload method.
    • prefix Prefix for id selectors we used to pull for style sheet changes.

AsyncAsset.remove

assets.remove(url, fn);

AsyncAsset.add

assets.add(url, fn);

License

MIT

Keywords

async

FAQs

Package last updated on 13 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts