Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 1.6 KB

File metadata and controls

28 lines (16 loc) · 1.6 KB

Webpack

What is Webpack

Quotes from SuiviveJS:

Webpack is a module bundler. Webpack can take care of bundling alongside a separate task runner. However, the line between bundler and task runner has become blurred thanks to community developed webpack plugins. Sometimes these plugins are used to perform tasks that are usually done outside of webpack, such as cleaning the build directory or deploying the build.

Configure your React project with React from scratch

The create-react-app comes with pre-configured Webpack so usually you don't need to know the details how it actually works.

If you would like to configure a React project with Webpack from scratch, you can checkout the tutorials below:

Other Bundling Tools

Besides Webpack, there are many other so called bunlders, you can find some comparison here

References