0.2.0 • Published 6 months ago

@orama/cloudflare-api v0.2.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 months ago

Cloudflare API library

Nodejs

This library is a wrapper around the Cloudflare API.

Installation

npm install @orama/cloudflare-api

Usage

import { CloudflareApi } from '@orama/cloudflare-api';

const apiKey = 'your-api-key'
const api = new CloudflareApi({ apiKey })

// Worker KV
const ACCOUNT_ID = 'your-account-id'
const NAMESPACE_ID = 'your-namespace-id'
const workerKv = api.workerKv(ACCOUNT_ID, NAMESPACE_ID)

await workerKv.uploadKv('key', 'value') // upload a value to the KV
await workerKv.getKv('key', 'text') // return the text representation of the value
await workerKv.deleteKv('key') // delete the value from the KV

License

Apache-2.0

0.2.0

6 months ago

0.1.2

6 months ago

0.1.1

6 months ago

0.1.0

6 months ago