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 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" },
  ],
}))
  • frontend.1601570084.txt.gz
  • Last modified: 2020/10/01 16:34
  • by paul