scrimba
Build Your First Angular app
Angular Services and Http - Services Overview
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Angular Services and Http - Services Overview
AboutCommentsNotes
Angular Services and Http - Services Overview
Expand for more info
src
app
core
core.module.ts
run
preview
console
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';

import { DataService } from './data.service';
import { SorterService } from './sorter.service';

@NgModule({
imports: [ ],
providers: [ ]
})
export class CoreModule { }
Console
"Angular is running in the development mode. Call enableProdMode() to enable the production mode."
,
customers
-3:36