Please refer Faq's page in documentation itself for queries and customization like Colors, RTL, Dark style..etc.
You can use Angular CLI to create projects, generate application and library code, and perform a variety of ongoing development tasks such as testing, bundling, and deployment.
To install the CLI using npm, open a terminal/console window and run the following command.
npm install –g @angular/cli
You develop apps in the context of an Angular workspace.
To create a new workspace and initial starter app:
ng new my-app
The Angular CLI installs the necessary Angular npm packages and other dependencies. This can take a few minutes. The CLI creates a new workspaces and a simple Welcome app, ready to run.
The Angular CLI includes a server, so that you can build and serve your app locally.
cd my-app
ng serve --open
The ng serve command launches the server, watches your files, and rebuilds
the
app as you make changes to those files.
The --open
or -o
just Option automatically opens
your
browser to http://localhost:4200/.
If you have already download and install node.js and Angular CLI then ignore prerequisites.
Download latest version of node.js from
nodejs.org.
Install Node.js using downloaded file.
To check your node version, run node -v in a terminal/console window (cmd)
To install the Angular CLI using npm, open a terminal/console window and run the following command.
npm install –g @angular/cli
To Update the Angular CLI using npm, open a terminal/console window and run the following command.
ng update @angular/cli @angular/core
or
npm uninstall --save-dev @angular/cli
npm install -g @angular/cli@latest // To Update globally
npm install --save-dev @angular/cli@latest // To Update local project
npm install
or
npm install -force
ng serve
or
ng serve --open
Once you serve your application by default it will take their default port using
http://localhost:4200/
ng build