웹 팩 의 기본 컴 파일 원 리 를 모방 하여 모듈 패키지 도 구 를 시험 적 으로 작성 합 니 다.
46561 단어 webpack
웹 팩 의 hooks
sourcepack
(자체 포장 도구 디 렉 터 리 실현) 와 usepack
(아 날로 그 프로젝트 디 렉 터 리) 를 새로 만 듭 니 다.usepack
├── src #
│ ├── a #
│ ├── loaders # loadder
│ ├── plugins # plugin
│ ├── index.js #
│ ├── index.less # less
├── webpack.config.json # webpack
├── package.json #
1. webpack 설정 webapck. config. js 를 작성 하면 다음 과 같 습 니 다.
const path = require("path");
const entryOptionPlugin = require("./src/plugins/entry-option-plugin");
module.exports = {
entry:"./src/index.js",
mode:"development",
output:{
path:path.resolve("dist"),
filename:"bundle.js"
},
resolveLoader:{
modules:'./src/loaders'
},
module:{
rules:[{
test:/\.less$/,
loader:['style-loader','less-loader']
}]
},
plugins:[
new entryOptionPlugin()
]
}
2, 입구 파일 index. js
let a1 = require("./a/a1");
require('./index.less');
alert("sourcePack");
3, a 디 렉 터 리 아래 a1. js
const a2 = require('./a2.js');
module.exports = a2;
a 디 렉 터 리 아래 a2. js
module.exports = "this is a2";
4. plugins 디 렉 터 리 아래 entry - option - plugin. js
class entryOptionPlugin {
constructor(options){
}
apply(compiler){
compiler.hooks.entryOption.tap('entryOptionPlugin',function(options){
console.log(" ...")
});
}
}
module.exports = entryOptionPlugin;
5, loaders 디 렉 터 리 아래 less - loader. js
let less = require("less");
module.exports = function(source){
let css;
less.render(source,(error,output)=>{
css = output.css;
});
return css.replace(/
/g,'\
');
}
loaders 디 렉 터 리 아래 style - loader. js
module.exports = function(source){
let style = `
let style = document.createElement('style');
style.innerHTML = ${JSON.stringify(source)};
document.head.appendChild(style);
`;
return style;
}
sourcepack
├── bin #
│ ├── sourcepack.js #
├── lib #
│ ├── compiler.js # compiler
│ ├── main.ejs # ejs
├── package.json #
1, package. json 에 빈 필드 추가
"bin": {
"sourcepack": "./bin/sourcepack.js"
},
2, 실행
npm link
소프트 연결 구축3,bin/sourcepack.js
const path = require("path");
const fs = require("fs");
const root = process.cwd();
const configPath = path.join(root,"webpack.config.js");
const config = require(configPath);
const Compiler = require('../lib/Compiler');
const compiler = new Compiler(config);
// entryOption
compiler.hooks.entryOption.call(config);
compiler.run();
4,lib/compiler.js
const { SyncHook } = require("tapable");
const path = require("path");
const fs = require("fs");
// AST
const esprima = require("esprima");
//
const estraverse = require("estraverse");
//
const escodegen = require("escodegen");
const ejs = require("ejs");
class Compiler{
constructor(options){
//
this.root = process.cwd();
// moduleId =>
this.modules = {};
this.options = options;
this.hooks = {
entryOption:new SyncHook(['config']),
afterPlugins:new SyncHook(['afterPlugins']),
run:new SyncHook(['run']),
compile:new SyncHook(['compile']),
afterCompile:new SyncHook(['afterCompile']),
emit:new SyncHook(['emit']),
done:new SyncHook(['done'])
}
let plugins = options.plugins;
if(plugins&&plugins.length>0)
plugins.forEach(plugin=>{
plugin.apply(this);
})
//
this.hooks.afterPlugins.call(this);
}
//
run(){
const {
entry,
output:{ path: pathName, filename }
}= this.options;
let _this = this;
const entryPath = path.join(this.root,entry);
this.hooks.compile.call(this);
this.parseModule(entryPath,true);
this.hooks.afterCompile.call(this);
let bundle = ejs.compile(fs.readFileSync(path.join(__dirname,'main.ejs'),"utf8"))({
modules:this.modules,entryId:this.entryId
});
this.hooks.emit.call(this);
fs.writeFileSync(path.join(pathName,filename),bundle);
this.hooks.done.call(this);
}
parseModule(modulePath,isEntry){
const {
module: { rules } ,
resolveLoader:{ modules: loaderPath }
}= this.options;
//
let source = fs.readFileSync(modulePath,'utf8');
for (var i =0;i < rules.length; i++) {
let rule = rules[i];
if(rule.test.test(modulePath)){
let loaders = rule.use||rule.loader;
if( Object.prototype.toString.call(loaders)==='[object Array]'){
for(let j = loaders.length-1;j>=0;j--){
let loader = loaders[j];
loader = require(path.join(this.root,loaderPath,loader));
source = loader(source);
}
}else if( Object.prototype.toString.call(loaders)=== "[object Object]"){
loaders = loader.loader;
}
}
}
let parentPath = path.relative(this.root,modulePath);
//TODO loader
let result = this.parse(source,path.dirname(parentPath));//
this.modules['./'+parentPath] = result.source;
if(isEntry) { this.entryId = './'+parentPath };
let requires = result.requires;
if( requires && requires.length>0){
requires.forEach(function(req){
this.parseModule(path.join(this.root,req));
}.bind(this))
}
}
// 。1. 2,
parse(source,parentPath){ // parentPath
// AST
let ast = esprima.parse(source);
//
const requires = [];
// 。1. 2,
estraverse.replace(ast,{
enter(node,parent){
if(node.type == "CallExpression" && node.callee.name == "require"){
let name = node.arguments[0].value;
name += (name.lastIndexOf('.')>0?"":".js");
let moduleId = "./"+path.join(parentPath,name);
requires.push(moduleId);
node.arguments= [{type:"Literal",value:moduleId}];
//
return node;
}
}
});
source = escodegen.generate(ast);
return { requires, source };
}
}
module.exports = Compiler;
5,lib/main/ejs
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = "");
/******/ })
/************************************************************************/
/******/ ({
/***/ "":
/***/ (function(module, exports, __webpack_require__) {
eval(``);
/***/ }),
/******/ });
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Documenttitle>
head>
<body>
<h1>sourcePackh1>
<script src="./bundle.js">script>
body>
html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Qiita API v2를 Ajax에서 사용하기위한 webpack 설정 (로컬 개발 환경 전용)에서는 Qiita의 기사 목록, 사용자 세부 정보, 기사를 '좋아요'한 사람 목록 및 재고가 있는 사람 목록을 검색할 수 있습니다. Qiita 화면에서 기사를 재고한 사람을 볼 수 없기 때문에 API를 통해 기사를 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.