Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
angular-cli
Advanced tools
Prototype of a CLI for Angular 2 applications based on the ember-cli project.
This project is very much still a work in progress.
We still have a long way before getting out of our alpha stage. If you wish to collaborate while the project is still young, check out our issue list.
The generated project has dependencies that require Node 4 or greater.
BEFORE YOU INSTALL: please read the prerequisites
npm install -g angular-cli
ng --help
ng new PROJECT_NAME
cd PROJECT_NAME
ng serve
Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
You can configure the default HTTP port and the one used by the LiveReload server with two command-line options :
ng serve --port 4201 --live-reload-port 49153
You can use the ng generate
(or just ng g
) command to generate Angular components:
ng generate component my-new-component
ng g component my-new-component # using the alias
# components support relative path generation
# if in the directory src/app/feature/ and you run
ng g component new-cmp
# your component will be generated in src/app/feature/new-cmp
# but if you were to run
ng g component ../newer-cmp
# your component will be generated in src/app/newer-cmp
You can find all possible blueprints in the table below:
Scaffold | Usage |
---|---|
Component | ng g component my-new-component |
Directive | ng g directive my-new-directive |
Pipe | ng g pipe my-new-pipe |
Service | ng g service my-new-service |
You can generate a new route by with the following command (note the singular
used in hero
):
ng generate route hero
This will create a folder with a routable component (hero-root.component.ts
)
with two sub-routes. The file structure will be as follows:
...
|-- app
| |-- hero
| | |-- hero-detail.component.html
| | |-- hero-detail.component.css
| | |-- hero-detail.component.spec.ts
| | |-- hero-detail.component.ts
| | |-- hero-list.component.html
| | |-- hero-list.component.css
| | |-- hero-list.component.spec.ts
| | |-- hero-list.component.ts
| | |-- hero-root.component.spec.ts
| | |-- hero-root.component.ts
| | |-- hero.service.spec.ts
| | |-- hero.service.ts
| |-- ...
|-- app.ts
|-- route-config.ts
...
By default the cli will add the import statements for HeroList and HeroDetail to
hero-root.component.ts
:
@RouteConfig([
{path:'/', name: 'HeroList', component: HeroListComponent, useAsDefault: true},
{path:'/:id', name: 'HeroDetail', component: HeroDetailComponent}
])
The generated route-config.ts
file is also updated with the following:
// DO NOT EDIT THIS FILE
// IT IS AUTO GENERATED BY ANGULAR-CLI
import {HeroRoot} from './hero/hero-root.component';
export const CliRouteConfig = [
{path:'/hero/...', name: 'HeroRoot', component: HeroRoot}
];
Visiting http://localhost:4200/hero
will show the hero list.
There is an optional flag for skip-router-generation
which will not add the route to the CliRouteConfig
for the application.
ng build
The build artifacts will be stored in the dist/
directory.
ng test
Tests will execute after a build is executed via Karma
If run with the watch argument --watch
(shorthand -w
) builds will run when source files have changed
and tests will run after each successful build
ng e2e
Before running the tests make sure you are serving the app via ng serve
.
End-to-end tests are ran via Protractor.
The CLI currently comes bundled with angular-cli-github-pages addon.
This means that you can deploy your apps quickly via:
git commit -a -m "final tweaks before deployment - what could go wrong?"
ng github-pages:deploy
Checkout angular-cli-github-pages addon docs for more info.
You can lint or format your app code by running ng lint
or ng format
respectively.
This will use the lint
/format
npm script that in generated projects uses tslint
/clang-format
.
You can modify the these scripts in package.json
to run whatever tool you prefer.
You can format your app code by running ng format
.
This will use the format
npm script that in generated projects uses clang-format
.
You can modify the format
script in package.json
to run whatever formatting tool
you prefer and ng format
will still run it.
By default a file manifest.appcache
will be generated which lists all files included in
a project's output, along with SHA1 hashes of all file contents. This file can be used
directly as an AppCache manifest (for now, index.html
must be manually edited to set this up).
The manifest is also annotated for use with angular2-service-worker
. Some manual operations
are currently required to enable this usage. The package must be installed, and worker.js
manually copied into the project src
directory:
npm install angular2-service-worker
cp node_modules/angular2-service-worker/dist/worker.js src/
Then, the commented snippet in index.html
must be uncommented to register the worker script
as a service worker.
To turn on auto completion use the following commands:
For bash:
ng completion >> ~/.bashrc
source ~/.bashrc
For zsh:
ng completion >> ~/.zshrc
source ~/.zshrc
Windows users using gitbash:
ng completion >> ~/.bash_profile
source ~/.bash_profile
This project is currently a prototype so there are many known issues. Just to mention a few:
build
and serve
commands with Admin permissions, otherwise the performance is not good.ng new
take too long because of lots of npm dependencies.ng serve
remember that the generated project has dependencies that require Node 4 or greater.git clone https://github.com/angular/angular-cli.git
cd angular-cli
npm link
npm link
is very similar to npm install -g
except that instead of downloading the package
from the repo, the just cloned angular-cli/
folder becomes the global package.
Any changes to the files in the angular-cli/
folder will immediately affect the global angular-cli
package,
allowing you to quickly test any changes you make to the cli project.
Now you can use angular-cli
via the command line:
ng new foo
cd foo
npm link angular-cli
ng server
npm link angular-cli
is needed because by default the globally installed angular-cli
just loads
the local angular-cli
from the project which was fetched remotely from npm.
npm link angular-cli
symlinks the global angular-cli
package to the local angular-cli
package.
Now the angular-cli
you cloned before is in three places:
The folder you cloned it into, npm's folder where it stores global packages and the angular-cli
project you just created.
Please read the official npm-link documentation and the npm-link cheatsheet for more information.
MIT
FAQs
CLI tool for Angular
The npm package angular-cli receives a total of 1,111 weekly downloads. As such, angular-cli popularity was classified as popular.
We found that angular-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.