0% found this document useful (0 votes)
23 views5 pages

Webpack

Uploaded by

artemvasylenko26
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views5 pages

Webpack

Uploaded by

artemvasylenko26
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

1/12/25, 6:22 PM webpack

bundle your assets


i

Write Your Code


src/index.js

import bar from './bar.js';

https://webpack.js.org 1/5
1/12/25, 6:22 PM webpack

bar();

src/bar.js

export default function bar() {


//
}

Bundle It
Without config or provide custom webpack.config.js

const path = require('path');

module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
};

page.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
...
</head>
<body>
...
<script src="dist/bundle.js"></script>
</body>
</html>

Then run webpack on the command-line to create bundle.js .

https://webpack.js.org 2/5
1/12/25, 6:22 PM webpack

Awesome, isn't it? Let's dive in!


Get Started quickly in our Guides section, or dig into the Concepts section for more high-level information
on the core notions behind webpack.

Support the Team


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!

Show sponsors by their average monthly amount of sponsoring in the last year.

Latest Sponsors
The following persons/organizations made their first donation in the last 14 days (limited to the top 10).

BECOME A SPONSOR

Platinum Monthly Sponsors


Platinum Monthly Sponsors are those who are currently pledging $2,500 or more monthly to webpack.

https://webpack.js.org 3/5
1/12/25, 6:22 PM webpack

BECOME A SPONSOR

Gold Monthly Sponsors


Gold Monthly Sponsors are those who are currently pledging $500 to $2,500 monthly to webpack.

BECOME A SPONSOR

Silver Monthly Sponsors


Silver Monthly Sponsors are those who are currently pledging $100 to $500 monthly to webpack.

BECOME A SPONSOR

Bronze Monthly Sponsors


https://webpack.js.org 4/5
1/12/25, 6:22 PM webpack

Bronze Monthly Sponsors are those who are currently pledging $10 to $100 monthly to webpack.

BECOME A SPONSOR

Backers
The following Backers are individuals who have contributed various amounts of money in order to help
support webpack. Every little bit helps, and we appreciate even the smallest contributions. This list
shows 100 randomly chosen backers:

BECOME A BACKER

https://webpack.js.org 5/5

You might also like