https://github.com/shadyboukhary/ionic-3-tutorial
Ionic 3 Tutorial
https://github.com/shadyboukhary/ionic-3-tutorial
Last synced: 8 months ago
JSON representation
Ionic 3 Tutorial
- Host: GitHub
- URL: https://github.com/shadyboukhary/ionic-3-tutorial
- Owner: ShadyBoukhary
- Created: 2018-09-19T04:49:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-06T17:39:32.000Z (about 7 years ago)
- Last Synced: 2025-01-05T07:15:02.933Z (9 months ago)
- Size: 1.06 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ionic 3 Tutorial
## Installation
### Windows
1. Install Node and NPM (find on google)
2. Add Node and NPM to PATH
3. Install Cordova
```shell
npm install -g cordova
```
4. Install Ionic CLI
```shell
npm install -g ionic
```### Linux & MacOS
1. Install NVM (Node Package Manager)
```shell
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash```
2. Restart Shell to load nvm
3. Install Node
```shell
nvm install node
nvm use node
```
3. Install Cordova
```shell
sudo npm install -g cordova
```
4. Install Ionic
```shell
sudo npm install -g ionic
```## Testing
### Ionic CLI 3.x.x
```shell
ionic start testApp blank
```### Ionic CLI 4.x.x
Create an Ionic 3 app
```shell
ionic start testApp blank
```Create an Ionic 4 app
```shell
ionic start testApp blank --type=angular
```To run the app
```shell
ionic serve
```