You are on page 1of 3

Daniyar Abeuov

CST-391

October 09, 2022

Activity 2

After installing angular cli

Running the applciation


After changing title value, the page dynamically updated

After adding message with value.


Research

Node_modules Provides npm packages to the entire workspace.


All other configuration classes inherit from this
base class.
Src Source files for the root application project
src/app Contains component files where application logic
and data are defined
src/assets Contains image and other asset files.
src/environments Contains build configuration options for a
particular target environment
angular.json CLI configuration defaults for all projects in the
workspace
package.json Configures npm package dependencies that are
available to all projects in the workspace.
tsconfig.json The base TypeScript configuration for projects in
the workspace.

Angular page source contains <app-root> tag where app.component.html file is rendered along with
styles and js

main.ts Entry point for the application


app.component.css Defines the base css stylesheet for the root
AppComponent
app.component.html Defines the base html template for the root
AppComponent
app.component.ts Defines the logic for the application’s root
component.
app.module.ts Defines the root module that tells Angular how to
assemble the application

You might also like