https://github.com/epoch/devserverstarter
https://github.com/epoch/devserverstarter
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/epoch/devserverstarter
- Owner: epoch
- Created: 2016-02-16T04:16:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-16T04:41:39.000Z (over 10 years ago)
- Last Synced: 2025-02-05T21:55:25.991Z (over 1 year ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
├── build
│ ├── bundle.js
│ └── index.html
├── dist
│ ├── bundle.js
│ └── index.html
├── package.json
├── src
│ ├── index.html
│ ├── index.js
│ └── style.css
├── README.md
├── gulpfile.js
├── package.json
├── webpack.config.js
└── webpack.prod.config.js
```
- src - application code you edit during development
- build - during development, webpackDevServer bundle and run code in memory.
But we can also build to disk in this folder for browser to run instead.
- dist - optimized application code browser run for production