Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 42 additions & 2 deletions packages/node-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,49 @@ Bucket supports feature toggling, tracking feature usage, collecting feedback on

## Installation

Install using `yarn` or `npm` with:
Install using your favourite package manager:

> `yarn add -s @bucketco/node-sdk` or `npm install -s @bucketco/node-sdk`.
{% tabs %}
{% tab title="npm" %}

```sh
npm i @bucketco/node-sdk
```

{% endtab %}

{% tab title="yarn" %}

```sh
yarn add @bucketco/node-sdk
```

{% endtab %}

{% tab title="bun" %}

```sh
bun add @bucketco/node-sdk
```

{% endtab %}

{% tab title="pnpm" %}

```sh
pnpm add @bucketco/node-sdk
```

{% endtab %}

{% tab title="deno" %}

```sh
deno add npm:@bucketco/node-sdk
```

{% endtab %}
{% endtabs %}

Other supported languages/frameworks are in the [Supported languages](https://docs.bucket.co/quickstart/supported-languages) documentation pages.

Expand Down