A minimal webpack starter template with hot reloading and development/production configurations.
- Webpack 5 with development and production configs
- Hot Module Replacement (HMR)
- Development server with live reload
- Production build optimization
- Simple JavaScript app structure
- Click "Use Template" to create your own project
- Install dependencies:
npm install- Start development server:
npm start- Build for production:
npm run build├── css/ # CSS styles
├── js/ # JavaScript source files
├── webpack.common.js # Common webpack configuration
├── webpack.config.dev.js # Development configuration
└── webpack.config.prod.js# Production configuration
- Add more features to
js/app.js - Style your app in
css/style.css - Configure webpack loaders for additional file types
- Add testing with Jest
- Implement code splitting
- Add SASS/SCSS support
MIT