Posts

Showing posts with the label how develop first ionic application

How install Ionic and develop first Ionic application || What is Ionic Framework || Ionic Framework Tutorial

Image
How Install Ionic:  Before proceeding we must have to download and install node.js (recommended for most users), make sure the latest version of Node.js and npm are installed. To check version, type on command prompt.  node --version npm--version Install the Ionic CLI (Command Line Interface) $ npm install -g ionic  // write on command prompt g here stands for globally and  npm - node package manager. All required packages are downloaded to the system.  What is ionic CLI? The Ionic CLI is built with TypeScript and Node.js. CLI is a inbuilt tool provide interface to developer such as installing and updating Ionic, the CLI comes with a built-in development server, build and debugging tools, and much more. Start an App : Ionic provide two default template or starter tabs and sidemenu . We can use blank for fresh blank project. Create an Ionic app using one of the pre-made app templates, or a blank one to start fresh. The th...