Skip to content

Instantly share code, notes, and snippets.

@boina-n
Last active August 16, 2017 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boina-n/8321c09c74218415dd1adb6d458d634a to your computer and use it in GitHub Desktop.
Save boina-n/8321c09c74218415dd1adb6d458d634a to your computer and use it in GitHub Desktop.
memo for quickstart angular dev
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