Parcel: link
- It is a Blazing fast, zero configuration web application bundler, and requires zero configuration.
- Parcel has a development server built in, which will automatically rebuild your app as you change files and supports hot module replacement for fast development
This supports auto compiles pug, scss files into index.html. Of source, it supports live reload.
- Install public parcel:
yarn global add parcel-bundler
- Install dependencies
yarn install
- Run develop mode
yarn dev
- Result: It will automatically open an Chrome tab with port
localhost:<your_port>
- Build image
docker build -t parcelsample:latest .
- Run app
docker-compose up