@launchdarkly/akamai-server-base-sdk 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/LICENSE +13 -0
- package/README.md +46 -0
- package/dist/esm/bundle.es.js +34 -0
- package/dist/esm/bundle.es.js.map +1 -0
- package/dist/esm/package.json +68 -0
- package/dist/esm/src/index.d.ts +24 -0
- package/dist/esm/src/index.d.ts.map +1 -0
- package/package.json +68 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the LaunchDarkly SDK for Akamai Workers will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org).
|
|
4
|
+
|
|
5
|
+
## 0.1.0 (2023-06-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* Initial alpha release of the SDK with support for external data store ([0f839cf](https://github.com/launchdarkly/js-core/commit/0f839cf5afe341a19007ddbd6a6f83fb2a7db0ab))
|
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2023 Catamorphic, Co.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# LaunchDarkly Akamai SDK
|
|
2
|
+
|
|
3
|
+
[![NPM][sdk-akamai-npm-badge]][sdk-akamai-npm-link]
|
|
4
|
+
[![Actions Status][sdk-akamai-ci-badge]][sdk-akamai-ci]
|
|
5
|
+
[![Documentation][sdk-akamai-ghp-badge]][sdk-akamai-ghp-link]
|
|
6
|
+
[![NPM][sdk-akamai-dm-badge]][sdk-akamai-npm-link]
|
|
7
|
+
[![NPM][sdk-akamai-dt-badge]][sdk-akamai-npm-link]
|
|
8
|
+
|
|
9
|
+
The LaunchDarkly Akamai SDK is designed primarily for use in Akamai Edgeworkers. It follows the server-side LaunchDarkly model for multi-user contexts. It is not intended for use in desktop and embedded systems applications.
|
|
10
|
+
|
|
11
|
+
For more information, see the [complete reference guide for this SDK](https://docs.launchdarkly.com/sdk/server-side/akamai).
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```shell
|
|
16
|
+
npm i @launchdarkly/akamai-server-base-sdk
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Quickstart
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
See the full [example app](https://github.com/launchdarkly/js-core/tree/main/packages/sdk/akamai-base/example).
|
|
23
|
+
|
|
24
|
+
## Developing this SDK
|
|
25
|
+
|
|
26
|
+
```shell
|
|
27
|
+
# at js-core repo root
|
|
28
|
+
yarn && yarn build && cd packages/sdk/akamai-base
|
|
29
|
+
|
|
30
|
+
# run tests
|
|
31
|
+
yarn test
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## About LaunchDarkly
|
|
35
|
+
|
|
36
|
+
- LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard. With LaunchDarkly, you can:
|
|
37
|
+
- Roll out a new feature to a subset of your users (like a group of users who opt-in to a beta tester group), gathering feedback and bug reports from real-world use cases.
|
|
38
|
+
- Gradually roll out a feature to an increasing percentage of users, and track the effect that the feature has on key metrics (for instance, how likely is a user to complete a purchase if they have feature A versus feature B?).
|
|
39
|
+
- Turn off a feature that you realize is causing performance problems in production, without needing to re-deploy, or even restart the application with a changed configuration file.
|
|
40
|
+
- Grant access to certain features based on user attributes, like payment plan (eg: users on the ‘gold’ plan get access to more features than users in the ‘silver’ plan). Disable parts of your application to facilitate maintenance, without taking everything offline.
|
|
41
|
+
- LaunchDarkly provides feature flag SDKs for a wide variety of languages and technologies. Read [our documentation](https://docs.launchdarkly.com/sdk) for a complete list.
|
|
42
|
+
- Explore LaunchDarkly
|
|
43
|
+
- [launchdarkly.com](https://www.launchdarkly.com/ 'LaunchDarkly Main Website') for more information
|
|
44
|
+
- [docs.launchdarkly.com](https://docs.launchdarkly.com/ 'LaunchDarkly Documentation') for our documentation and SDK reference guides
|
|
45
|
+
- [apidocs.launchdarkly.com](https://apidocs.launchdarkly.com/ 'LaunchDarkly API Documentation') for our API documentation
|
|
46
|
+
- [blog.launchdarkly.com](https://blog.launchdarkly.com/ 'LaunchDarkly Blog Documentation') for the latest product updates
|