Pinning Files
Using the JavaScript SDK
Installation
npm install @filebase/sdkUploading a File
import { ObjectManager } from "@filebase/sdk";
const objectManager = new ObjectManager(S3_KEY, S3_SECRET, {
bucket: bucketName
});
const uploadedObject = await objectManager.upload(
"my-object",
Buffer.from("Hello World!")
);
console.log(uploadedObject);API Reference
Uploading a Folder
Using the S3 Compatible API
Authentication
Uploading a File
API Reference
Using the Web Application Dashboard
Step-by-Step Guide
Tips
Last updated


