forked from sodafoundation/documentation
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34f6c85
commit aabecdf
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
**To install Angular using CLI write this line on your terminal**, | ||
To install Angular using CLI write this line on your terminal, | ||
npm install -g @angular/cli | ||
|
||
**To create workspace named my-app** , | ||
To create workspace named my-app, | ||
ng new my-app | ||
|
||
**To run the application enter the following lines on your terminal**, | ||
To run the application enter the following lines on your terminal, | ||
cd my-app | ||
ng serve --open | ||
|
||
After this the Angular application will be launched on your browser at **localhost:4200 **(default port for Angular based apps). | ||
After this the Angular application will be launched on your browser at localhost:4200, | ||
(default port for Angular based apps). | ||
|