-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDiff-Angular-React-Ionic.txt
More file actions
87 lines (36 loc) · 1.82 KB
/
Diff-Angular-React-Ionic.txt
File metadata and controls
87 lines (36 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
* "Node JS" installation is common for all these technologies
******************************************** Angular ********************************************
*************************************************************************************************
* Official site -> https://angular.io/cli
* npm i -g @angular/cli
* ng new projectName
* cd projectName
* ng serve
******************************************** React **********************************************
*************************************************************************************************
* Official site -> https://reactjs.org/docs/create-a-new-react-app.html
* npx create-react-app projectName
* cd projectName
* npm start
**************************************** React Native *******************************************
*************************************************************************************************
* Official site -> https://facebook.github.io/react-native/docs/getting-started
* To create React Native App we have two ways
-> Expo
-> React Native CLI
* To get started with Expo -> https://expo.io/learn
******************************************** Ionic **********************************************
*************************************************************************************************
* Official site -> https://ionicframework.com/docs/
* We need to install "ionic" & "cordova"
* ionic -v || ionic info
* npm install -g ionic cordova
* ionic start projectName blank --type=angular
* cd projectName
* ionic serve
Note: We can install ionic lab using below command
-> npm i @ionic/lab
Then we can start the app with below command
-> ionic lab
* Ionic uses '8100' port by default for local. Previously it was '8101'
* Ionic lab uses '8200' port by default for lab. Previously it was '8201'