Node.js - bucket()

Create a new bucket for storing and retrieving files.

import { bucket } from '@nitric/sdk'

// Create a readable/writable reference to an 'assets' bucket
const assets = bucket('assets').for('reading', 'writing', 'deleting')

Parameters

  • Name
    name
    Required
    Required
    Type
    string
    Description

    The unique name of this bucket within the service. Subsequent calls to bucket with the same name will return the same object.

Access

All Nitric resources provide access permissions you can use to specify the level of access your service needs to the resource. See here for details Access Control documentation.

Available permissions:


reading

This permission allows your service to read files from the bucket


writing

This permission allows your service to write files to the bucket


deleting

This permission allows your service to delete files from the bucket


Working with files

See the following for examples on working with files in a bucket: