Sample Progressive Web App for Cats
git clone [email protected]:ComcastSamples/dating-app-pwa.git
cd dating-app-pwa
npm i
npm start
-
Install node.
The build image is based on Node.js v18, which is LTS through October 18, 2023. It is strongly recommended that all developers use the same version to avoid inconsistencies between libraries. Using NVM (Node Version Manager) is an easy way to switch between Node versions. Docs and Installation Instructions for NVM are available at NVM's Github page.
Once you install NVM, install Node.js:
nvm install 18
After installing, tell NVM to use that version using this repo's
.nvmrc
file:nvm use
-
Install dependencies:
npm i
-
Start the server:
Development
npm start
This should point your browser to http://localhost:3000/
If you make code changes, the app will update and refresh.