ang-starter
Angular start point for medium and large applications
File Explorer
- .gitignore
- app.css
- .gitignore
- .gitkeep
- .gitkeep
- Bootstrap.js
- Constants.js
- HTTP.js
- RequestInterceptor.js
- ResponseInterceptor.js
- Routes.js
- Security.js
- .gitkeep
- AboutCtrl.js
- ContactCtrl.js
- HomeCtrl.js
- .gitkeep
- year.js
- .gitkeep
- word.js
- .gitkeep
- Crud.js
- .gitkeep
- Auth.js
- .gitkeep
- app.js
- test.js
- .gitkeep
- about.html
- contact.html
- home.html
- index.html
- .gitignore
- .bowerrc
- .gitignore
- bower.json
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bower
View Details ▼
bower
A package manager optimized for front-end web development.
A package can be a GitHub user/repo shorthand, a Git endpoint, a URL or a registered package.
bower install
Install a project's dependencies, listed in its `bower.json`:
bower install {{package1 package2 ...}}
Install one or more packages to the bower_components directory:
bower uninstall {{package1 package2 ...}}
Uninstall packages locally from the bower_components directory:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
