Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@supabase/storage-js

Package Overview
Dependencies
Maintainers
9
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@supabase/storage-js

Isomorphic storage client for Supabase.

  • 2.7.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
401K
decreased by-16.2%
Maintainers
9
Weekly downloads
 
Created

What is @supabase/storage-js?

@supabase/storage-js is a JavaScript client library for interacting with Supabase Storage. It allows you to manage files and buckets, upload and download files, and handle permissions within the Supabase ecosystem.

What are @supabase/storage-js's main functionalities?

Create a Bucket

This feature allows you to create a new storage bucket in your Supabase project. The code sample demonstrates how to initialize the Supabase client and create a new bucket named 'my-new-bucket'.

const { createClient } = require('@supabase/supabase-js');
const supabase = createClient('https://your-project.supabase.co', 'public-anon-key');

async function createBucket() {
  const { data, error } = await supabase.storage.createBucket('my-new-bucket');
  if (error) console.error('Error creating bucket:', error);
  else console.log('Bucket created:', data);
}

createBucket();

Upload a File

This feature allows you to upload a file to a specified bucket. The code sample demonstrates how to upload a text file named 'hello.txt' to the 'my-new-bucket' bucket.

const { createClient } = require('@supabase/supabase-js');
const supabase = createClient('https://your-project.supabase.co', 'public-anon-key');

async function uploadFile() {
  const file = new File(['Hello World'], 'hello.txt', { type: 'text/plain' });
  const { data, error } = await supabase.storage.from('my-new-bucket').upload('hello.txt', file);
  if (error) console.error('Error uploading file:', error);
  else console.log('File uploaded:', data);
}

uploadFile();

Download a File

This feature allows you to download a file from a specified bucket. The code sample demonstrates how to download a file named 'hello.txt' from the 'my-new-bucket' bucket.

const { createClient } = require('@supabase/supabase-js');
const supabase = createClient('https://your-project.supabase.co', 'public-anon-key');

async function downloadFile() {
  const { data, error } = await supabase.storage.from('my-new-bucket').download('hello.txt');
  if (error) console.error('Error downloading file:', error);
  else console.log('File downloaded:', data);
}

downloadFile();

List Files in a Bucket

This feature allows you to list all files in a specified bucket. The code sample demonstrates how to list all files in the 'my-new-bucket' bucket.

const { createClient } = require('@supabase/supabase-js');
const supabase = createClient('https://your-project.supabase.co', 'public-anon-key');

async function listFiles() {
  const { data, error } = await supabase.storage.from('my-new-bucket').list();
  if (error) console.error('Error listing files:', error);
  else console.log('Files in bucket:', data);
}

listFiles();

Delete a File

This feature allows you to delete a file from a specified bucket. The code sample demonstrates how to delete a file named 'hello.txt' from the 'my-new-bucket' bucket.

const { createClient } = require('@supabase/supabase-js');
const supabase = createClient('https://your-project.supabase.co', 'public-anon-key');

async function deleteFile() {
  const { data, error } = await supabase.storage.from('my-new-bucket').remove(['hello.txt']);
  if (error) console.error('Error deleting file:', error);
  else console.log('File deleted:', data);
}

deleteFile();

Other packages similar to @supabase/storage-js

Keywords

FAQs

Package last updated on 21 Aug 2024

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

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc