https://github.com/imba/webpack-app-imba
Imba 2 + Webpack App Starter
https://github.com/imba/webpack-app-imba
Last synced: about 1 year ago
JSON representation
Imba 2 + Webpack App Starter
- Host: GitHub
- URL: https://github.com/imba/webpack-app-imba
- Owner: imba
- Archived: true
- Created: 2015-08-16T11:43:41.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T22:05:01.000Z (over 3 years ago)
- Last Synced: 2025-05-09T09:56:16.834Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://hello-world-imba.netlify.com
- Size: 1000 KB
- Stars: 56
- Watchers: 8
- Forks: 20
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello World Imba
Tiny template for Imba using webpack & webpack-dev-server
## Getting started
```
git clone https://github.com/imba/webpack-app-imba
cd webpack-app-imba
npm install
```
You can run the app in two ways, either served via the webpack-dev-server or
Express.
### Webpack
```bash
npm start
# Go to url logged out by devserver
# usually "Project is running at http://localhost:8080/"
```
### Server side
First make sure you have built or are watching the client
```bash
npm run watch
```
Then in another tab / session
```bash
npm run express
```