Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Waiting for Ionic connectivity with ionic-app-scripts issue

Hi, Waiting for connectivity with ionic-app-scripts continues with ionic serve--lab?

[app-scripts] [18:17:21]  tslint: ...orkSpace_Ionic3_MobileApp/prototype/src/pages/profile-details/profile-details.ts, line: 2
[INFO] Waiting for connectivity with ionic-app-scripts...
[INFO] Waiting for connectivity with ionic-app-scripts...
[INFO] Waiting for connectivity with ionic-app-scripts...

Ionic Info :

Ionic:

   ionic (Ionic CLI)  : 4.0.3 (C:\Users\user\AppData\Roaming\npm\node_modules\ionic)
   Ionic Framework    : ionic-angular 3.9.2
   @ionic/app-scripts : 3.1.11

Cordova:

   cordova (Cordova CLI) : 8.0.0
   Cordova Platforms     : browser 5.0.3

System:

   Android SDK Tools : 26.1.1
   NodeJS            : v9.1.0 (C:\Program Files\nodejs\node.exe)
   npm               : 5.5.1
   OS                : Windows 10

Environment:

   ANDROID_HOME : C:\Users\user2\AppData\Local\Android\Sdk

Below I have updated mine package.json file. package.json

{
      "name": "name",
      "version": "0.0.1",
      "author": "Ionic Framework",
      "homepage": "http://ionicframework.com/",
      "private": true,
      "scripts": {
        "clean": "ionic-app-scripts clean",
        "build": "ionic-app-scripts build --aot --minifyjs --minifycss --release",
        "lint": "ionic-app-scripts lint",
        "ionic:build": "ionic-app-scripts build",
        "ionic:serve": "ionic-app-scripts serve"
      },
like image 476
sameer Avatar asked Aug 05 '18 10:08

sameer


People also ask

How do I run an ionic app on localhost?

By default, ionic serve boots up a development server on localhost . To serve to your LAN, specify the --external option, which will use all network interfaces and print the external address(es) on which your app is being served. Try the --lab option to see multiple platforms at once. ionic serve uses the Angular CLI.

What is ionic App script?

Ionic apps utilize TypeScript and Sass code. This code needs to be converted into web browser friendly code. A build process is required to achieve this. @ionic/app-scripts are a set of configurable scripts provided to make it easy to create a simple or a highly customized build process.

How do I run an ionic app in another port?

If you want to specify the ports themselves, you can pass additional option arguments when you run ionic serve like — port|-p for an specific web server port. If you try ionic serve -p 8200 -i 35730, the app runs perfectly with the custom web server and livereload port in your browser.


1 Answers

Try npm run start instead of ionic serve. This will work.

like image 106
Shreyas Pednekar Avatar answered Oct 04 '22 01:10

Shreyas Pednekar