1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

docs(chore): indent code block properly.

This commit is contained in:
Thomas Heartman 2022-01-03 10:19:04 +01:00
parent 8ae2de8a3e
commit bdbd659a71

View File

@ -162,11 +162,11 @@ The Unleash Proxy accepts a `customStrategies` property as part of its initializ
3. **Pass the strategy to the Proxy Client** using the **`customStrategies`** option. A full code example:
``` javascript
const { createApp } = require('@unleash/proxy');
const { Strategy } = require('unleash-client');
``` javascript
const { createApp } = require('@unleash/proxy');
const { Strategy } = require('unleash-client');
class TimeStampStrategy extends Strategy {
class TimeStampStrategy extends Strategy {
constructor() {
super('TimeStamp');
}
@ -174,20 +174,20 @@ class TimeStampStrategy extends Strategy {
isEnabled(parameters, context) {
return Date.parse(parameters.enableAfter) > Date.now();
}
}
}
const port = 3000;
const port = 3000;
const app = createApp({
const app = createApp({
unleashUrl: 'https://app.unleash-hosted.com/demo/api/',
unleashApiToken: '*:default.56907a2fa53c1d16101d509a10b78e36190b0f918d9f122d',
proxySecrets: ['proxy-secret', 'another-proxy-secret', 's1'],
refreshInterval: 1000,
customStrategies: [new TimeStampStrategy()]
});
});
app.listen(port, () =>
app.listen(port, () =>
// eslint-disable-next-line no-console
console.log(`Unleash Proxy listening on http://localhost:${port}/proxy`),
);
```
);
```