php - Ionic Serve Command gives an error -


i devolping mobile application using ionic framework.
when run command ionic server, throws error:

/deps/uv/src/unix/stream.c:494: uv__server_io: assertion `events == 1' failed 

can help?

this looks error node. try following commands first see if errors solved:

sudo npm install npm -g sudo npm cache clean -f sudo npm install node -g 

this update npm (node.js' package manager) if not updated.

if won't work, i'd recommend re-install:

sudo npm uninstall node sudo apt-get purge npm sudo apt-get install npm sudo npm install node -g 

let me know if face issues in process.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -