Download or clone project
Run npm install to install dependencies
Change url in 'home.page.ts' to your desired url
Run ionic serve or ionic serve -l to lunch project
If you run into the error "ERR_OSSL_EVP_UNSUPPORTED"
This is because Node.js is preventing you from using a feature that OpenSSL removed for security reasons
This can be fixed in 2 possible ways:
- Update Node.js to the latest stable version
- Use --openssl-legacy-provider option: This means instaed of running "ionic serve", run "set NODE_OPTIONS=--openssl-legacy-provider && npm run start" instead and the application will load.
- Open an issue if the above does not solve the problem
Tutorials on Blog4Dev website