Demo Ionic App
Demo Ionic App
js
INTRODUCTION
Ionic is a popular framework for building cross-pla orm mobile applica ons, and Node.js is used for
managing dependencies and development tools. By the end of this guide, you will have a basic Ionic app
up and running.
REQUIREMENTS
Before you begin, make sure you have the following so ware installed on your system:
STEPS
1. Installing Ionic CLI
Open your command-line terminal and run the following command to create a new Ionic app:
npm install -g @ionic/cli native-run cordova-res
2. Create an App
Next, create an Ionic Angular app that uses the “Tabs” starter template and adds Capacitor for
native functionality:
ionic start photo-gallery tabs --type=angular –capacitor
3. Navigate to App’s Directory
Change your current directory to the newly created Ionic App directory:
cd photo-gallery