-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
65 lines (52 loc) · 1.39 KB
/
index.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const express = require("express");
const { createInstance } = require("@featurevisor/sdk");
require("isomorphic-fetch");
/**
* Constants
*/
const PORT = 3000;
const REFRESH_INTERVAL = 60 * 5; // every 5 minutes
const DATAFILE_URL =
process.env.environment === "production"
? "https://featurevisor-example-cloudflare.pages.dev/production/datafile-tag-all.json"
: "https://featurevisor-example-cloudflare.pages.dev/staging/datafile-tag-all.json";
/**
* Featurevisor instance
*/
const f = createInstance({
datafileUrl: DATAFILE_URL,
onReady: () => console.log(`Featurevisor SDK is now ready`),
onRefresh: () => console.log(`Featurevisor SDK has refreshed`),
onUpdate: () => console.log(`Featurevisor SDK has updates`),
// optionally refresh the datafile every 5 minutes,
// without having to restart the server
refreshInterval: REFRESH_INTERVAL,
});
/**
* Express app with middleware
*/
const app = express();
app.use((req, res, next) => {
req.f = f;
next();
});
/**
* Routes
*/
app.get("/", (req, res) => {
const { f } = req;
const featureKey = "baz";
const context = { userId: "user-123" };
const isEnabled = f.isEnabled(featureKey, context);
if (isEnabled) {
res.send("Hello World!");
} else {
res.send("Not enabled yet!");
}
});
/**
* Start the server
*/
app.listen(PORT, () => {
console.log(`Server running at http://localhost:${PORT}`);
});