-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathconfigcat.ts
57 lines (56 loc) · 1.63 KB
/
configcat.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 ConfigCatSvg from '@site/static/img/config-cat-no-fill.svg';
import { Provider } from '.';
export const ConfigCat: Provider = {
name: 'ConfigCat',
logo: ConfigCatSvg,
technologies: [
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/config-cat',
category: ['Server'],
},
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/config-cat-web',
category: ['Client'],
},
{
technology: 'Go',
vendorOfficial: true,
href: 'https://github.com/open-feature/go-sdk-contrib/tree/main/providers/configcat',
category: ['Server'],
},
{
technology: 'Java',
vendorOfficial: true,
href: 'https://github.com/open-feature/java-sdk-contrib/tree/main/providers/configcat',
category: ['Server'],
},
{
technology: '.NET',
vendorOfficial: true,
href: 'https://github.com/open-feature/dotnet-sdk-contrib/tree/main/src/OpenFeature.Contrib.Providers.ConfigCat',
category: ['Server'],
},
{
technology: 'PHP',
vendorOfficial: true,
href: 'https://github.com/configcat/openfeature-php',
category: ['Server'],
},
{
technology: 'Python',
vendorOfficial: true,
href: 'https://github.com/configcat/openfeature-python',
category: ['Server'],
},
{
technology: 'Rust',
vendorOfficial: true,
href: 'https://github.com/configcat/openfeature-rust',
category: ['Server'],
},
],
};