Socket
Socket
Sign inDemoInstall

cloudflare-r2

Package Overview
Dependencies
2
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cloudflare-r2

Cloudflare R2


Version published
Weekly downloads
147
increased by30.09%
Maintainers
1
Install size
428 kB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 21 May 2022

Did you know?

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc