Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucamug/elm-parcel-example
https://github.com/lucamug/elm-parcel-example
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lucamug/elm-parcel-example
- Owner: lucamug
- License: mit
- Created: 2019-06-11T08:02:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T06:17:23.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T13:23:59.858Z (3 months ago)
- Language: Elm
- Size: 856 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - lucamug/elm-parcel-example - (Elm)
README
# elm-parcel-example
An example Elm application built with Parcel.## Running the application
To run the example application first install the dependencies.```bash
npm install
```Then just run the following command and `parcel` will serve the application.
```bash
npx parcel src/index.html
```## Building for production
When you want to build the optimized production files you just run the following command.```bash
npx parcel build src/index.html
```Afterwards the compiled production assets will be located in the `dist` folder.