Webpack 4 Ultimate Tutorial: Learn basics in one video

preview_player
Показать описание
This video will show you basics of webpack in one video to get you started with it right away! Webpack is a powerful tool to automate your tasks as a fullstack/frontend/backend developer and is a must have tool today!

Special discount for codedamn users: use coupon code CODEDAMN (already applied on link above)
Рекомендации по теме
Комментарии
Автор

This is the most straight forward tutorial in youtube, crystal clear! Keep up the good word, i hope you will support me for all my questions.. Thanks!

hackmeornot
Автор

very nice.. I watched till the end and it is very helpful.

trivender
Автор

Great tutorial and clear explanation! thank you for that

AmineDammak
Автор

very very nice tutorial of webpack for beginner, pronunciation is also very nice and this tutorial of webpack is very easy to understand for beginners.

muhammadwaris
Автор

You have energy not like the other guy

freddiejackson
Автор

@Codedamn

After the library concept we have removed the 2 properties. When you run the code I see main.js in the <html> file.
How it is reading the "main.js" we dont have it right? it should be "myfile.js" in the "build/js/" folder.
For me its not working, , , , with main.js. Can you correct me if I am wrong?

const path = require("path");

module.exports = {
mode: "development",
entry: {
myfile: "./src/engine.js",
},
output: {
path: path.resolve(__dirname, "build"),
filename: "js/[name].js",
publicPath: "/assets/",
},
};

my html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>This is webpack learning</title>
</head>
<body>
<script src="main.js"></script>
</body>
</html>

myjava
Автор

Why my scripts for ajax pages don´t work ??

VictoriaTewari