Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lucamug/elm-parcel-example


https://github.com/lucamug/elm-parcel-example

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

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.