Does ionic work on windows 10

this is the error i get when i started my app
please help

Creating Ionic app in folder C:\Program Files\nodejs\myapp based on tabs project
Downloading: https://github.com/driftyco/ionic-app-base/archive/master.zip
[=============================] 100% 0.0s
Error Initializing app: Error: EPERM: operation not permitted, mkdir ‘C:\Program Files\nodejs\myapp\ionic-app-base-master’

Error: EPERM: operation not permitted, mkdir 'C:\Program Files\nodejs\myapp\ionic-app-base-master’
at Error (native)

EPERM: operation not permitted, mkdir ‘C:\Program Files\nodejs\myapp\ionic-app-base-master’ (CLI v1.7.10)

Your system information:

Cordova CLI: 5.4.1
Ionic CLI Version: 1.7.10
Ionic App Lib Version: 0.6.5
OS:
Node Version: v5.1.0

yes, works in Windows 10 fine. Looks like you are trying to create your app in the Program files directory and probably getting a permission error.

You need to create a folder in your My Documents, and lets call it “Ionic Apps” for example. You need to cd into this folder from the cmd window… or do it the easy way … while in your My Documents folder hold down the shift key and right click on the Ionic Apps folder. The menu will come up and click on “open command window here”.

Now type your ionic command to create the app.

$ ionic start myApp tabs

Make sure to change “myApp” to what ever you want to name your app.

Good luck,

Robert