0% found this document useful (0 votes)
25 views3 pages

Demo Ionic App

Uploaded by

Yugendra Sharma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views3 pages

Demo Ionic App

Uploaded by

Yugendra Sharma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Crea ng an Ionic App with Node.

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:

 Node.js (LTS version recommended)


 NPM, the Node Package Manager (usually comes with Node.js)
 Ionic CLI (installed globally)

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

4. Run your App


To see your app in a web browser during development, run the following command:
ionic serve

Your Ionic app is now running in a web browser.

You might also like