-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathlaunchdarkly.ts
57 lines (56 loc) · 1.6 KB
/
launchdarkly.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import LaunchDarklyNoFillSvg from '@site/static/img/launchdarkly-no-fill.svg';
import { Provider } from '.';
export const LaunchDarkly: Provider = {
name: 'LaunchDarkly',
logo: LaunchDarklyNoFillSvg,
technologies: [
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://github.com/launchdarkly/openfeature-node-server',
category: ['Server'],
},
{
technology: 'JavaScript',
vendorOfficial: false,
href: 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/launchdarkly-client',
category: ['Client'],
},
{
technology: 'Go',
vendorOfficial: false,
href: 'https://github.com/open-feature/go-sdk-contrib/tree/main/providers/launchdarkly',
category: ['Server'],
},
{
technology: 'Java',
vendorOfficial: true,
href: 'https://github.com/launchdarkly/openfeature-java-server',
category: ['Server'],
},
{
technology: '.NET',
vendorOfficial: true,
href: 'https://github.com/launchdarkly/openfeature-dotnet-server',
category: ['Server'],
},
{
technology: 'PHP',
vendorOfficial: true,
href: 'https://github.com/launchdarkly/openfeature-php-server',
category: ['Server'],
},
{
technology: 'Python',
vendorOfficial: true,
href: 'https://github.com/launchdarkly/openfeature-python-server',
category: ['Server'],
},
{
technology: 'Ruby',
vendorOfficial: true,
href: 'https://github.com/launchdarkly/openfeature-ruby-server',
category: ['Server'],
},
],
};