You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This copies the repository contents to your local filesystem in the directory you ran the command from (and adds some management files in the .git directory)
cd to the local folder just created by the clone operation
Make sure you have a recent version of node.
node -v will give you the version
If the version is not recent you can update by
Windows: Download the latest installer and run it
Make sure you have a recent version of npm
Even if you just installed node, npm may have a newer version than what came with the node installer
npm install npm@latest -g (this will wipe out existing install and replace with the latest)
Initialize npm
npm init
Install aurelia-cli globally
aurelia-cli is a set of tools for building and running aurelia projects. Install globally and you can use it anywhere.
npm install aurelia-cli -g
Use aurelia-cli to bootstrap project
au new --here
Options: Web, Babel, Sass, No unit testing, Visual studio code, Yes create project, Yes install dependencies