Angular (How To Start Angular App) .Odt
Angular (How To Start Angular App) .Odt
Angular (How To Start Angular App) .Odt
AngularJS was designed primarily by Misko Hevery and was introduced around 2012,
and quickly became a very popular data application framework.
Angular has been designed from the beginning
with mobile support so you can easily address mobile platforms,
and also provides server-side rendering to speed up
the rendering of your web application on the browsers.
Also, Angular provides powerful templating engine (moteur de création de modèles
)and powerful templating support. (prise en charge des modèles
)
Output:
...
...
✔ Packages installed successfully.
Successfully initialized git.
This will create a directory named hello-angular4 in your current directory, and create an
application.
Step 4 – Serve Angular Application
Your basic Angular application is ready to serve. Change directory to hello-angular4 and run your
Angular application using ng serve command.
cd hello-angular9
ng serve
You can access your angular application on localhost port 4200, Which is the default host and port
used by Angular application.
• http://localhost:4200
You can change host and port for running Angular application by providing –host and –port
command line arguments.
ng serve --host 0.0.0.0 --port 8080