🚀 Easily create a basic webpack application.
Install globally
npm install -g create-webpack-applicationcreate-webpack-applicationor
cwaand select scaffold.
Create a directory called my-app with the initial structure of the project.
Will also install its dependencies.
my-app
├── node_modules
├── package.json
├── .gitignore
├── public
│ └── index.html
└── src
└── entry.js
npm startThen open http://localhost:8080/ to see your app.
npm buildTranspile and watch.
Inspired by create-react-app ❤️
