webpack/examples/loader/README.md

165 lines
4.1 KiB
Markdown
Raw Normal View History

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
/******/ // The module cache
/******/ var installedModules = {};
2015-01-18 07:49:58 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // The require function
2014-03-25 17:44:10 +08:00
/******/ function __webpack_require__(moduleId) {
2015-01-18 07:49:58 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
2014-03-25 17:44:10 +08:00
/******/ return installedModules[moduleId].exports;
2015-01-18 07:49:58 +08:00
/******/
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
/******/ };
2015-01-18 07:49:58 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Execute the module function
2014-03-25 17:44:10 +08:00
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
2015-01-18 07:49:58 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Flag the module as loaded
/******/ module.loaded = true;
2015-01-18 07:49:58 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Return the exports of the module
2014-03-25 17:44:10 +08:00
/******/ return module.exports;
2013-03-28 17:31:52 +08:00
/******/ }
2015-01-18 07:49:58 +08:00
/******/
/******/
2013-03-28 17:31:52 +08:00
/******/ // expose the modules object (__webpack_modules__)
2014-03-25 17:44:10 +08:00
/******/ __webpack_require__.m = modules;
2015-01-18 07:49:58 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // expose the module cache
2014-03-25 17:44:10 +08:00
/******/ __webpack_require__.c = installedModules;
2015-01-18 07:49:58 +08:00
/******/
2013-12-16 06:30:50 +08:00
/******/ // __webpack_public_path__
2014-03-25 17:44:10 +08:00
/******/ __webpack_require__.p = "js/";
2015-01-18 07:49:58 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Load entry module and return exports
2014-03-25 17:44:10 +08:00
/******/ return __webpack_require__(0);
2013-03-28 17:31:52 +08:00
/******/ })
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 ***!
\********************/
2014-03-25 17:44:10 +08:00
/***/ function(module, exports, __webpack_require__) {
2013-01-31 01:49:25 +08:00
2013-03-28 17:20:14 +08:00
// use our loader
2014-03-25 17:44:10 +08:00
console.dir(__webpack_require__(/*! ./loader!./file */ 2));
2013-10-31 07:49:59 +08:00
2013-03-28 17:20:14 +08:00
// use buildin json loader
2014-03-25 17:44:10 +08:00
console.dir(__webpack_require__(/*! ./test.json */ 1)); // default by extension
console.dir(__webpack_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
\*******************************************/
2014-03-25 17:44:10 +08:00
/***/ function(module, exports, __webpack_require__) {
2013-01-31 01:49:25 +08:00
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 ***!
\*****************************/
2014-03-25 17:44:10 +08:00
/***/ function(module, exports, __webpack_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
```
2015-01-18 07:49:58 +08:00
Hash: 8ae83d82089bb36260e9
Version: webpack 1.5.0
Time: 58ms
2013-05-08 21:36:54 +08:00
Asset Size Chunks Chunk Names
2015-01-18 07:49:58 +08:00
output.js 2323 0 [emitted] main
2013-09-25 04:30:07 +08:00
chunk {0} output.js (main) 282 [rendered]
2014-03-25 17:44:10 +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)
```
2015-01-18 07:49:58 +08:00
Hash: 17799e695fe3c2a8b932
Version: webpack 1.5.0
Time: 102ms
2013-12-16 06:30:50 +08:00
Asset Size Chunks Chunk Names
2015-01-18 07:49:58 +08:00
output.js 352 0 [emitted] main
2013-12-16 06:30:50 +08:00
chunk {0} output.js (main) 282 [rendered]
2014-03-25 17:44:10 +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
```