A library to interact with Cloudflare Stream as the official lib currently lack this functionality...
This library uses ofetch
for sending requests.
- Install
- Usage
- Usage with missing APIs
- Low level requests
- Caveats
- The official node library
- A note for Cloudflare
pnpm i @fixers/cloudflare-stream
npm install @fixers/cloudflare-stream
const stream = new CloudflareStream({
accountId: '',
apiToken: ''
})
// fetch all the videos in your library
await stream.all()
// Get a video by UID
const video = await stream.getVideo('<UID>')
// get the video duration
video.duration
// get the video dimensions
video.input.width
video.input.height
This library provides a CloudflareClient
class that do the lightweight job of gluing a request with credentials.
const cloudflareClient = new CloudflareClient({
accountId: '',
apiToken: ''
})
// send a get request to cloudflare on the path /stream/<UID>
await cloudflareClient._get<StreamVideo>('stream/<UID>')
// send a request with a custom method
await cloudflareClient._request<StreamVideo>('stream/<UID>', {
method: 'DELETE'
})
The CloudflareClient
expose a common set of functions with an underscore _
.
_request
: send a request, with a custom arbitrary body_get
: shorthand for aGET
_request
_post
: shorthand for aPOST
_request
_put
: shorthand for aPUT
_request
_patch
: shorthand for aPATCH
_request
_delete
: shorthand for aDELETE
_request
When using
CloudflareClient
, do not put forward slash/
at the beginning of the url you want to fetch, the library do a basic string concatenation, this will be fixed in the near future!
The library provides you with a cloudflareRequest
function, that is used throughout the library, is mainly there so you have absolute control over the request process.
You can go down a level with _cloudflareRawRequest
, a thin wrapper around ofetch
, slightly tweaked as you mainly use this function to interact with an API.
// the same as ofetch, with some differences
// url can be also be a new URL(...)
_cloudflareRawRequest(url, options)
This library is incomplete, but provides the building blocks to sends proper request to Cloudflare.
There is also the official https://github.com/cloudflare/node-cloudflare node library.
It does not support stream, which is the focus of this library.
Dear Cloudflare team, your documentation is actually pretty good, back it up with some library.
How do you expect developers to use your products if you don't give us the tools to do so?
Do we really need to test our libs on a live service?
Do we really need to experiment to figure out how the heck to do a pagination? Put some example!