repairearth / dynamic-loader

dynamic loader module for webpack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dynamic loader for webpack

dynamic loader module for webpack

Usage

// The chunk is requested, when you require the bundle
var component = 'home/index.rcx'; // react-router component
var waitForChunk = require('dynamic?ext=rcx!./app/' + component);

// To wait until the chunk is available (and get the exports)
//  you need to async wait for it.
waitForChunk(function(file) {
	// use file like is was required with
	// var file = require("./file.js");
});
// wraps the require in a require.ensure block

About

dynamic loader module for webpack

License:MIT License


Languages

Language:JavaScript 100.0%