Importing SimpleNotificationsModule according to the documentation (below): ```typescript @NgModule({ imports: [BrowserModule, SimpleNotificationsModule], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } ``` results in a "No provider for NotificationsService" error after 313ca4def29bdc178c0ef03a26456df349862a56 The following resolves the error, so it seems the documentation should be updated. ```typescript @NgModule({ imports: [BrowserModule, SimpleNotificationsModule.forRoot()], // call `.forRoot()` method declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } ``` I'm gonna put in a PR shortly with updated docs.