npm install --save-dev webpack webpack-clisrc/index.js
import bar from "./bar.js";
bar();src/bar.js
export default function bar() {
//
}ابدأ بدون ملف configuration، أو استخدم ملف webpack.config.js مخصصًا:
import path from "node:path";
import { fileURLToPath } from "node:url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
export default {
entry: "./src/index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bundle.js",
},
};تفضّل شرحًا بالفيديو؟ Without config
page.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
...
</head>
<body>
...
<script src="dist/bundle.js"></script>
</body>
</html>بعدها شغّل webpack من سطر الأوامر لإنشاء ملف bundle.js.
ابدأ بسرعة من قسم البدء، أو انتقل إلى قسم المفاهيم إذا أردت فهم الأفكار الأساسية التي يعتمد عليها webpack بصورة أوسع.
Through contributions, donations, and sponsorship, you allow webpack to thrive. Your donations directly support office hours, continued enhancements, and most importantly, great documentation and learning material!