Giter Club home page Giter Club logo

webpack-learning's Introduction

WEBPACK-LEARNING

Simple intro project for WEBPACK LEARNING (without config file)

STEPS

1.install Node.js 2.cmd prompt >goto project folder 3. npm init //package.json file is generated 4.npm install --save-dev webpack webpack-cli //node_modules created, with all dependency pkgs inside. // and as devdependencies these are added in pkg.json 5. Goto Package.json--> scripts-> Add this script:

"build":"webpack --mode development --entry ./js/app2.js --output ./dist/bundle.js" //dist== distribution folder, which will be created auto by 7th step 6.rewrite js files with export and import with entry file as app2.js , so import others into this app2.js . export from app.js //check code 7.npm run build //create a dist folder inside our project folder , and inside it bundle.js WEBPACK-LEARNING > dist > bundle.js 8.<script src="dist/bundle.js"</script> //rewrite script line for app.js and app2.js as above


Extras: for minifying

  1. "build:prod": "webpack <------------> -p" 10.npm run build:prod

webpack-learning's People

Contributors

shamseena-dev avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.