Skip to content

Instantly share code, notes, and snippets.

@kazagkazag
Created April 26, 2018 19:15
Show Gist options
  • Save kazagkazag/5c1beac9a9864dcdac08e395ff6b05ff to your computer and use it in GitHub Desktop.
Save kazagkazag/5c1beac9a9864dcdac08e395ff6b05ff to your computer and use it in GitHub Desktop.
server.get("/users/:id/articles", (request, response) => {
const delay = faker.random.number({min: 400, max: 1000});
// delay response with fake articles
setTimeout(() => {
response.send(200, getArticlesForUser());
}, delay);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment