0.0.2 • Published 8 years ago

dynamic-loader v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

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