Search code examples
angularjsnode.jsionic-frameworkionic-native

How to run ionic default sidemenu on browser


I'm working on an Ionic application but I'm new to the Ionic framework. I created a simple default side menu module using cmd run as > ionic serve sidemenu, but the page is not shown in the browser.

How should I make it run on the browser?

Can anyone point me in the right direction? What am I missing here and what are the basic requirements I need to install? I'm getting this on cmd:

enter image description here


Solution

  • In order to create a side menu project you should do: $ ionic start myApp sidemenu.

    An then to run it:

    $ cd myApp
    $ ionic serve
    

    Hope it helps.