Skip to content

Instantly share code, notes, and snippets.

View isaacplmann's full-sized avatar
🎩
✌️

Isaac Mann isaacplmann

🎩
✌️
View GitHub Profile

Angular In-Memory-Db Mocker

A nifty decorator utility to map in memory db methods to http paths. It allows you to decorate methods with a API route and map a mock operation to it. So you simple do:

@MockPost('api/requests/approve/:id')
postRequestApprove(reqInfo) {
  ...
}