IonicFramework | ||||||
|
ionic frameworkInstallationnpm install -g @ionic/cli Create projectionic start {APPNAME} {TEMPLATE NAME} As template you can use: - tabs Create pageionic generate page contact local testingTo run the app in development envirinment, you have to move into the directory of the project cd {APPNAME} ionic serve When using the additional parameter --external you can access the app from another machine. releasetroubleshootingENOSPC: System limit for number of file watchers reachedThe meaning of this error is that the number of files monitored by the system has reached the limit!! Result: The command executed failed! Or throw a warning (such as executing a react-native start VSCode) Edit file /etc/sysctl.conf and add the following line at the bottom: fs.inotify.max_user_watches=524288 Execute command in shell: sudo sysctl -p |