2012-03-27 06:00:51 +08:00
|
|
|
# example.js
|
|
|
|
|
|
|
|
``` javascript
|
|
|
|
// use our loader
|
|
|
|
console.dir(require("./loader!./file"));
|
|
|
|
|
|
|
|
// use buildin json loader
|
|
|
|
console.dir(require("./test.json")); // default by extension
|
2013-02-13 18:58:13 +08:00
|
|
|
console.dir(require("!json!./test.json")); // manual
|
2012-03-27 06:00:51 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
# file.js
|
|
|
|
|
|
|
|
``` javascript
|
|
|
|
exports.foo = "bar";
|
|
|
|
```
|
|
|
|
|
|
|
|
# loader.js
|
|
|
|
|
|
|
|
``` javascript
|
2012-04-05 21:08:49 +08:00
|
|
|
module.exports = function(content) {
|
|
|
|
return "exports.answer = 42;\n" + content;
|
2012-03-27 06:00:51 +08:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
# test.json
|
|
|
|
|
|
|
|
``` javascript
|
|
|
|
{
|
|
|
|
"foobar": 1234
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
# js/output.js
|
|
|
|
|
|
|
|
``` javascript
|
2013-03-28 17:31:52 +08:00
|
|
|
/******/ (function(modules) { // webpackBootstrap
|
2014-02-04 01:20:55 +08:00
|
|
|
/******/ // shortcut for better minimizing
|
|
|
|
/******/ var exports = "exports";
|
2013-12-16 06:30:50 +08:00
|
|
|
/******/
|
2013-03-28 17:31:52 +08:00
|
|
|
/******/ // The module cache
|
|
|
|
/******/ var installedModules = {};
|
|
|
|
/******/
|
|
|
|
/******/ // The require function
|
|
|
|
/******/ function require(moduleId) {
|
|
|
|
/******/ // Check if module is in cache
|
|
|
|
/******/ if(installedModules[moduleId])
|
2014-02-04 01:20:55 +08:00
|
|
|
/******/ return installedModules[moduleId][exports];
|
2013-03-28 17:31:52 +08:00
|
|
|
/******/
|
|
|
|
/******/ // Create a new module (and put it into the cache)
|
|
|
|
/******/ var module = installedModules[moduleId] = {
|
|
|
|
/******/ exports: {},
|
|
|
|
/******/ id: moduleId,
|
|
|
|
/******/ loaded: false
|
|
|
|
/******/ };
|
|
|
|
/******/
|
|
|
|
/******/ // Execute the module function
|
2014-02-04 01:20:55 +08:00
|
|
|
/******/ modules[moduleId].call(module[exports], module, module[exports], require);
|
2013-03-28 17:31:52 +08:00
|
|
|
/******/
|
|
|
|
/******/ // Flag the module as loaded
|
|
|
|
/******/ module.loaded = true;
|
|
|
|
/******/
|
|
|
|
/******/ // Return the exports of the module
|
2014-02-04 01:20:55 +08:00
|
|
|
/******/ return module[exports];
|
2013-03-28 17:31:52 +08:00
|
|
|
/******/ }
|
|
|
|
/******/
|
|
|
|
/******/
|
|
|
|
/******/ // expose the modules object (__webpack_modules__)
|
|
|
|
/******/ require.modules = modules;
|
|
|
|
/******/
|
|
|
|
/******/ // expose the module cache
|
|
|
|
/******/ require.cache = installedModules;
|
|
|
|
/******/
|
2013-12-16 06:30:50 +08:00
|
|
|
/******/ // __webpack_public_path__
|
2013-12-20 06:25:33 +08:00
|
|
|
/******/ require.p = "js/";
|
2013-12-16 06:30:50 +08:00
|
|
|
/******/
|
2013-03-28 17:31:52 +08:00
|
|
|
/******/
|
|
|
|
/******/ // Load entry module and return exports
|
|
|
|
/******/ return require(0);
|
|
|
|
/******/ })
|
2013-03-27 01:22:30 +08:00
|
|
|
/************************************************************************/
|
2013-12-16 06:30:50 +08:00
|
|
|
/******/ ([
|
|
|
|
/* 0 */
|
2013-01-31 01:49:25 +08:00
|
|
|
/*!********************!*\
|
|
|
|
!*** ./example.js ***!
|
|
|
|
\********************/
|
|
|
|
/***/ function(module, exports, require) {
|
|
|
|
|
2013-03-28 17:20:14 +08:00
|
|
|
// use our loader
|
|
|
|
console.dir(require(/*! ./loader!./file */ 2));
|
2013-10-31 07:49:59 +08:00
|
|
|
|
2013-03-28 17:20:14 +08:00
|
|
|
// use buildin json loader
|
|
|
|
console.dir(require(/*! ./test.json */ 1)); // default by extension
|
|
|
|
console.dir(require(/*! json!./test.json */ 1)); // manual
|
2013-01-31 01:49:25 +08:00
|
|
|
|
|
|
|
/***/ },
|
2013-12-16 06:30:50 +08:00
|
|
|
/* 1 */
|
2014-01-24 20:33:19 +08:00
|
|
|
/*!*******************************************!*\
|
2013-02-13 18:58:13 +08:00
|
|
|
!*** (webpack)/~/json-loader!./test.json ***!
|
2014-01-24 20:33:19 +08:00
|
|
|
\*******************************************/
|
2013-01-31 01:49:25 +08:00
|
|
|
/***/ function(module, exports, require) {
|
|
|
|
|
2013-03-28 17:20:14 +08:00
|
|
|
module.exports = {
|
|
|
|
"foobar": 1234
|
|
|
|
}
|
2012-10-25 01:28:17 +08:00
|
|
|
|
2013-01-31 01:49:25 +08:00
|
|
|
/***/ },
|
2013-12-16 06:30:50 +08:00
|
|
|
/* 2 */
|
2013-01-31 01:49:25 +08:00
|
|
|
/*!*****************************!*\
|
|
|
|
!*** ./loader.js!./file.js ***!
|
|
|
|
\*****************************/
|
|
|
|
/***/ function(module, exports, require) {
|
2012-11-07 19:49:01 +08:00
|
|
|
|
2013-03-28 17:20:14 +08:00
|
|
|
exports.answer = 42;
|
|
|
|
exports.foo = "bar";
|
2012-11-07 19:49:01 +08:00
|
|
|
|
2013-01-31 01:49:25 +08:00
|
|
|
/***/ }
|
2013-12-16 06:30:50 +08:00
|
|
|
/******/ ])
|
2012-03-27 06:00:51 +08:00
|
|
|
```
|
|
|
|
|
2012-03-27 10:23:11 +08:00
|
|
|
# Console output
|
|
|
|
|
2013-02-24 09:27:11 +08:00
|
|
|
Prints in node.js (`enhanced-require example.js`) and in browser:
|
2012-03-27 10:23:11 +08:00
|
|
|
|
|
|
|
```
|
|
|
|
{ answer: 42, foo: 'bar' }
|
|
|
|
{ foobar: 1234 }
|
|
|
|
{ foobar: 1234 }
|
|
|
|
```
|
|
|
|
|
2012-03-27 06:00:51 +08:00
|
|
|
# Info
|
|
|
|
|
|
|
|
## Uncompressed
|
|
|
|
|
|
|
|
```
|
2014-01-24 20:33:19 +08:00
|
|
|
Hash: 547826c0f7b5903a42b6
|
2014-02-12 15:56:54 +08:00
|
|
|
Version: webpack 1.0.0-rc5
|
|
|
|
Time: 78ms
|
2013-05-08 21:36:54 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2014-02-04 01:20:55 +08:00
|
|
|
output.js 2309 0 [emitted] main
|
2013-09-25 04:30:07 +08:00
|
|
|
chunk {0} output.js (main) 282 [rendered]
|
2014-01-24 20:33:19 +08:00
|
|
|
> main [0] ./example.js
|
2013-09-25 04:30:07 +08:00
|
|
|
[0] ./example.js 205 {0} [built]
|
|
|
|
[1] (webpack)/~/json-loader!./test.json 36 {0} [built]
|
2013-02-24 09:27:11 +08:00
|
|
|
cjs require !json!./test.json [0] ./example.js 6:12-40
|
2013-09-25 04:30:07 +08:00
|
|
|
cjs require ./test.json [0] ./example.js 5:12-34
|
|
|
|
[2] ./loader.js!./file.js 41 {0} [not cacheable] [built]
|
2013-02-24 09:27:11 +08:00
|
|
|
cjs require ./loader!./file [0] ./example.js 2:12-38
|
2013-12-16 06:30:50 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## Minimized (uglify-js, no zip)
|
|
|
|
|
|
|
|
```
|
2014-02-12 15:56:54 +08:00
|
|
|
Hash: 7c660ac3e0efcdac24e2
|
|
|
|
Version: webpack 1.0.0-rc5
|
|
|
|
Time: 149ms
|
2013-12-16 06:30:50 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2014-02-04 01:20:55 +08:00
|
|
|
output.js 354 0 [emitted] main
|
2013-12-16 06:30:50 +08:00
|
|
|
chunk {0} output.js (main) 282 [rendered]
|
2014-01-24 20:33:19 +08:00
|
|
|
> main [0] ./example.js
|
2013-12-16 06:30:50 +08:00
|
|
|
[0] ./example.js 205 {0} [built]
|
|
|
|
[1] (webpack)/~/json-loader!./test.json 36 {0} [built]
|
|
|
|
cjs require !json!./test.json [0] ./example.js 6:12-40
|
|
|
|
cjs require ./test.json [0] ./example.js 5:12-34
|
|
|
|
[2] ./loader.js!./file.js 41 {0} [not cacheable] [built]
|
|
|
|
cjs require ./loader!./file [0] ./example.js 2:12-38
|
|
|
|
```
|