https://github.com/balmjs/template-pwa
Progressive Web Apps project
https://github.com/balmjs/template-pwa
balm balm-cli pwa
Last synced: about 2 months ago
JSON representation
Progressive Web Apps project
- Host: GitHub
- URL: https://github.com/balmjs/template-pwa
- Owner: balmjs
- Created: 2017-05-04T00:41:15.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-02-07T02:20:48.000Z (over 2 years ago)
- Last Synced: 2024-05-27T12:33:21.259Z (12 months ago)
- Topics: balm, balm-cli, pwa
- Language: JavaScript
- Homepage:
- Size: 358 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BalmJS template - `pwa`
> A PWA project
## Requirements
```sh
npm install -g balm-core balm-cli
# OR
yarn global add balm-core balm-cli
``````sh
# Verify
balm -V# Output:
# balm-cli: 4.0.0
# balm-core: 4.0.0
```## Installation
```sh
balm init pwa my-projectcd my-project
yarn
# or
npm i
```Since the application manifest is a text file, you can choose to write it by hand or use a tool that simplifies its creation. Several tools are available online:
- [App Manifest Generator](https://app-manifest.firebaseapp.com/)
- [Web App Manifest Generator](https://tomitm.github.io/appmanifest/)## Enjoy
```sh
# For development
npm run dev# For production
npm run prod
```- thx [BalmJS](https://github.com/balmjs/balm)