-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathserver.ts
40 lines (31 loc) · 882 Bytes
/
server.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import express from "express";
import * as instamancer from "instamancer";
const app = express();
const port = 3000;
async function getPosts(tag: string): Promise<instamancer.TPost[]> {
const hashtag = instamancer.createApi("hashtag", tag, {
total: 5,
});
const posts = [];
for await (const post of hashtag.generator()) {
posts.push(post);
}
return posts;
}
let cachedPosts: instamancer.TPost[] = [];
async function getCached() {
cachedPosts = await getPosts("puppies");
}
setTimeout(getCached, 3000);
app.get("/cached", async (req, res) => {
res.json(cachedPosts);
});
app.get("/live", async (req, res) => {
if ("tag" in req.params) {
const posts = await getPosts(req.params.tag);
res.json(posts);
}
});
app.listen(port, () =>
process.stdout.write(`Example app listening on port ${port}!\n`),
);