Skip to content

ipince22/webpack-tutorial

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Webpack installation

During this short tutorial, we will be installing webpack from scratch.

What do you need?

You will need a computer with Node and NPM installed.

  1. Check your version of NPM:
$ npm -v

Note: You need at least the 3.5 version of NPM to avoid any performance issues.

  1. Create a new npm package
$ npm init -y
  1. Install webpack
$ npm install --save-dev webpack
  1. We want to be able to bunble CSS file into our JS bundles, for that we need both the Style and CSS loaders.
$ npm install --save-dev style-loader css-loader
  1. We also want to use SCSS (Sass) syntaxt.
$ npm install sass-loader node-sass webpack --save-dev

Time to decide what type of installation do you want.

Click on the best option according to your needs and continue the steps provided on that README file.

  • Vanilla JS application: A simple Javascript web application.
  • WordPress: Use Webpack with your WordPress installation
  • React JS: Install everything you need to start a basic React.JS application.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors