I have been following the Angular Tour of Heros application and have reached the HTTP bit here: https://angular.io/docs/ts/latest/tutorial/toh-pt6.html.
All fine right up to the point where the tutorial starts telling me to delete my mock service and replace it with this:
import { InMemoryDbService } from 'angular-in-memory-web-api';
I ran npm and installed it from: https://github.com/angular/in-memory-web-api
and now it is coming back with a 404
GET http://localhost:5556/node_modules/angular-in-memory-web-api.js 404 (Not Found)
even though my linter doesn't produce compile errors in my IDE. Is there something else I need to do to configure this dependency that is currently missing in the tutorial?