This is an old revision of the document!
Front End Development
The following are tools that I have learned for Front End development.
Mirage JS
Mirage JS lets you mock back end server APIs.
Static Requests
Static requests serve up hardcoded bits of data.
Here is a static GET request:
this.get("/api/reminders", () => ({ reminders: [ { id: 1, text: "Walk the dog" }, { id: 2, text: "Take out the trash" }, { id: 3, text: "Work out" }, ], }))