Node.js and npm are essential to launch Angular Application.
Click here to get it , if it's not already installed on your machine.Verify that you are running at least node v4.x.x and npm 3.x.x
by running node -v and npm -v in a terminal/console window.
Older versions produce errors.
Clone this repo into new project folder (e.g., my-project).
git clone https://github.com/surbhishankar/Car-Ranks-App.git my-proj
cd my-projectInstall the npm packages in the my-project folder and launch the Application:
npm install
npm startThe Application will open on a localhost.
You can quickly delete the non-essential files that concern testing and QuickStart repository maintenance
(including all git-related artifacts such as the .git folder and .gitignore!)
by entering the following commands while in the project folder:
xargs rm -rf < non-essential-files.osx.txt
rm src/app/*.spec*.ts
rm non-essential-files.osx.txtfor /f %i in (non-essential-files.txt) do del %i /F /S /Q
rd .git /s /q
rd e2e /s /qThis repository holds the TypeScript source code of the angular.io quickstart, the foundation for most of the documentation samples and potentially a good starting point for your application.