sina-abedi / HTML-CSS-JS-Webpack5

A tuturial to help U handle HTML + CSS + JS + Webpack5

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HTML + CSS + JS + Webpack5 = LOL ;)

1- in this case src/index.js depends on src/hello-world.js(manually added!)

2- web pack will create a correct dependency graph automatically so we try to use webpack right now...

2.5- create a nodeJS project

-----I> npm init -y

3- we need webpack & webpack-cli as dev-dependency to do the job

-----I> npm install -D webpack webpack-cli

4- creating webpack.config.js

5- comment all <script src="..."></script> lines

6- write : <script src="./dist/bundle.js"></script>

in webpack.config.js:

7-

const path = require('path'); // for exact path making

8-

module.exports = {};

9-adding "entry: // entry piont

module.exports = {
	entry: './src/index.js', // the main JS file
};

10- adding "output": // out put file and directory path:

output file and folder will be created automatically after build

module.exports = {
	entry: './src/index.js', // the main JS file
	output: {
		// out put file (which is used in project).
		filename: 'bundle.js',

		// out put directory
		path: path.resolve(__dirname, 'dist'),
	},
};

11- adding "mode": // which mode? production or developememt?

module.exports = {
	entry: './src/index.js', // the main JS file
	output: {
		// out put file (which is used in project).
		filename: 'bundle.js',

		// out put directory
		path: path.resolve(__dirname, 'dist'),
	},
	// which mode? production or developememt?
	mode: 'none',
};

12- export all js dependency files, like "./src/hello-world.js" in ES6 way:

export default whatever;

13- import all js dependency files, into main file "./src/index.js" in ES6 way:

import whatever from './directory/file.js';

14- create a script in package.json about webpack:

    {
	"name": "webpack-html-css-js",
	"version": "1.0.0",
	"description": "",
	"main": "index.js",
	"scripts": {
		"test": "echo \"Error: no test specified\" && exit 1",
		"web-pack-build-test": "webpack"
	},
	"keywords": [],
	"author": "",
	"license": "ISC",
	"devDependencies": {
		"webpack": "^5.1.0",
		"webpack-cli": "^4.0.0"
	}
}

15- run the command : npm run web-pack-build-test

-----I> Done!!!!

About

A tuturial to help U handle HTML + CSS + JS + Webpack5

License:MIT License


Languages

Language:HTML 72.6%Language:JavaScript 27.4%