Last active
August 16, 2017 09:10
-
-
Save boina-n/8321c09c74218415dd1adb6d458d634a to your computer and use it in GitHub Desktop.
memo for quickstart angular dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/angular/quickstart.git quickstart | |
cd quickstart | |
npm install | |
npm start | |
# (*Nix) To delete no essential file of an Angular project | |
xargs rm -rf < non-essential-files.osx.txt | |
rm src/app/*.spec*.ts | |
rm non-essential-files.osx.txt | |
# ( windows ) To delete no essential file of an Angular project | |
for /f %i in (non-essential-files.txt) do del %i /F /S /Q | |
rd .git /s /q | |
rd e2e /s /q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment