Ionic4 : start blank with sidemenu

Hello
i just try to create an app with new version beta of ionic4,

I create an app with the tuto of simon
ionic start myApp blank --type=angular

so i try but i have an error adding more page. I link the project with ionic pro and github / so when i want to add a page i have this error : you are running version 7.10.0 of Node.js, which is not supported by angular cli v6, i dont know how to update the version of node.

so if you have a solution i take it. thanks

If you’re using MacOS or Windows, just download and run the installer from the official NodeJS website:


The installation wizard will replace the old version with the new one.

On Linux, use the Node Package Manger (npm) to update your version of NodeJS.
Update npm first:
npm install npm@latest -g

Then update NodeJS using the n module:
sudo npm cache clean -f
sudo npm install -g n
sudo n stable

Hope that helps. :slightly_smiling_face:

yes it help me :), all is worked now :slight_smile:
thanks a lot