Thank you for visiting my site!

Category Archives: Angular Tutorials

Services

2019-08-13

1. Create a service Components should do only presentation logic. Use services to separate logic from Component, and to re-use the...

Continue reading

Http Services

2019-08-12

app.modules.ts add to imports: imports: [BrowserModule, AppRoutingModule, HttpClientModule], import to the...

Continue reading

Create a Component

2019-08-12

ng g c foldername ng g c foldername --skipTests  (no test...

Continue reading

Add Bootstrap

2019-08-12

Add bootstrap npm install bootstrap --save // save adds dependency into package.jason In package.jason file "devDependencies":...

Continue reading

Get Started

2019-08-12

Recommended VS code Extensions Auto import  by steoates Create and app: Open a Command Prompt -> Navigate to your...

Continue reading