Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wilsson/create-webpack-application
:rocket: Easily create a basic webpack application.
https://github.com/wilsson/create-webpack-application
cli
Last synced: about 1 month ago
JSON representation
:rocket: Easily create a basic webpack application.
- Host: GitHub
- URL: https://github.com/wilsson/create-webpack-application
- Owner: wilsson
- Created: 2017-08-13T02:45:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-20T05:46:53.000Z (almost 3 years ago)
- Last Synced: 2024-09-14T05:32:19.000Z (2 months ago)
- Topics: cli
- Language: TypeScript
- Homepage:
- Size: 214 KB
- Stars: 12
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[create-react-app]: https://github.com/facebookincubator/create-react-app
# Create Webpack App
:rocket: Easily create a basic webpack application.
## Getting Started
### Installation
Install globally
```bash
npm install -g create-webpack-application
```### Usage
```bash
create-webpack-application
```or
```bash
cwa
```and select scaffold.
![Alt text](/public/create-app.png)
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
```### Scripts
```bash
npm start
```
Then open http://localhost:8080/ to see your app.```bash
npm build
```Transpile and watch.
Inspired by [create-react-app] :heart: