You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
<li> [More fun with observables](#more-observables).</li>
34
34
</ul>
35
-
- [Guarding against Cross-Site Request Forgery](#xsrf)
36
-
- [Appendix: Tour of Heroes in-memory server](#in-mem-web-api).
35
+
- [Guarding against Cross-Site Request Forgery](#xsrf).
36
+
- [Appendix: Tour of Heroes _in-memory web api_](#in-mem-web-api).
37
37
38
38
A <live-example>live example</live-example> illustrates these topics.
39
39
@@ -669,14 +669,18 @@ a#in-mem-web-api
669
669
The *get heroes* scenario would work,
670
670
but since the app can't save changes to a JSON file, it needs a web API server.
671
671
Because there isn't a real server for this demo,
672
-
it uses an *in-memory web API simulator* instead.
672
+
it substitutes the Angular _in-memory web api_ simulator for the actual XHR backend service.
673
673
674
674
.l-sub-section
675
675
:marked
676
-
The in-memory web api is not part of the Angular core.
677
-
It's an optional service in its own `angular-in-memory-web-api` library
678
-
installed with npm (see `package.json`) and
679
-
registered for module loading by SystemJS (see `systemjs.config.js`).
676
+
The in-memory web api is not part of Angular _proper_.
677
+
It's an optional service in its own
678
+
<a href="https://github.com/angular/in-memory-web-api" target="_blank" title="In-memory Web API"><i>angular-in-memory-web-api</i></a>
679
+
library installed with npm (see `package.json`).
680
+
681
+
See the
682
+
<a href="https://github.com/angular/in-memory-web-api/blob/master/README.md" target="_blank" title='In-memory Web API "README.md"'><i>README file</i></a>
683
+
for configuration options, default behaviors, and limitations.
680
684
681
685
:marked
682
686
The in-memory web API gets its data from !{_a_ca_class_with} a `createDb()`
0 commit comments