https://github.com/dopplerhq/node-sdk
https://github.com/dopplerhq/node-sdk
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dopplerhq/node-sdk
- Owner: DopplerHQ
- License: mit
- Created: 2023-07-25T17:39:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T21:11:08.000Z (over 1 year ago)
- Last Synced: 2024-05-22T22:27:26.004Z (over 1 year ago)
- Language: TypeScript
- Size: 476 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)