Socket
Book a DemoInstallSign in
Socket

cloudflare-r2

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloudflare-r2

Cloudflare R2

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
15
-34.78%
Maintainers
1
Weekly downloads
 
Created
Source

cloudflare-r2

Read and write objects to Cloudflare R2 using fetch()

Install

$ npm install cloudflare-r2

Usage

var R2 = require('cloudflare-r2')
global.fetch = require('node-fetch')

var r2 = new R2({
    accessKey: '<private accessKey>',
    secretKey: '<private secretKey>',
    accountId: '<account id>',
    region: 'auto'
});

(async function() {
    try {

        let bucket = 'testbucket';
        let key = 'a/test/file.txt';
        let body = 'test file contents';

        let putResponse = await r2.putObject({bucket, key, body})

        console.log(`put status: ${putResponse.status}`)
        console.log(`put response body: '${await putResponse.text()}'`)

        let getResponse = await r2.getObject({bucket, key});

        console.log(`get status: ${getResponse.status}`)
        console.log(`get response body: '${await getResponse.text()}'`)

        let delResponse = await r2.deleteObject({bucket, key});

        console.log(`del status: ${delResponse.status}`)
        console.log(`del response body: '${await delResponse.text()}'`)
    }
    catch (ex) {
        console.log(ex)
    }
}());

License

MIT license; see LICENSE.

Keywords

cloudflare

FAQs

Package last updated on 21 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.