https://github.com/werner/madison-pux
front end interface for Madison
https://github.com/werner/madison-pux
Last synced: 12 months ago
JSON representation
front end interface for Madison
- Host: GitHub
- URL: https://github.com/werner/madison-pux
- Owner: werner
- License: bsd-3-clause
- Created: 2017-01-21T18:36:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-21T18:40:52.000Z (over 9 years ago)
- Last Synced: 2025-05-13T00:46:18.663Z (about 1 year ago)
- Language: JavaScript
- Size: 1.93 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Support: support/index.html
Awesome Lists containing this project
README
# pux-starter-app
Starter [Pux](https://github.com/alexmingoia/purescript-pux/) application using
webpack with hot-reloading and time-travel debug using
[pux-devtool](https://github.com/alexmingoia/pux-devtool).
See the [Guide](https://alexmingoia.github.io/purescript-pux) for help learning
Pux.

## Installation
```sh
git clone git://github.com/alexmingoia/pux-starter-app.git example
cd example
npm install
npm start
```
Visit `http://localhost:3000` in your browser, edit `src/purs/Layout.purs`
and watch the magic!
## Available scripts
### watch
`npm start` or `npm run watch` will start a development server, which
hot-reloads your application when sources changes.
### serve
`npm run serve` serves your application without watching for changes or
hot-reloading.
### build
`npm run build` bundles and minifies your application to run in production mode.