An open API service indexing awesome lists of open source software.

https://github.com/dopplerhq/node-sdk


https://github.com/dopplerhq/node-sdk

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# @dopplerhq/node-sdk

Doppler's SDK for Node provides convenient access to the Doppler API from applications written in JavaScript or TypeScript.

## Installation

```sh
npm install @dopplerhq/node-sdk
```

> Doppler's Node SDK leverages Node's builtin request libraries and will not install any external dependencies

## Usage

```ts
import DopplerSDK from '@dopplerhq/node-sdk'

const doppler = new DopplerSDK({ accessToken: 'dp.xx.yyy' });

const res = await doppler.projects.list();
console.log(res);
```

## Reference Docs

[A list of all services and service methods](./src/services/README.MD)