Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 528 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 528 Bytes

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