Docs
Home
  • 🎉Welcome
    • Intro
    • Installation
  • 💾SDK
    • Upload
    • Download
    • Tokens (Client upload)
    • Publish
    • List and Search
    • Delete
  • 🚲Examples
    • File upload component (Next.js)
    • Download button (Next.js)
Powered by GitBook
On this page
  • 1. Install
  • 2. Connect
  • 3. Use FILE0 in your code
  1. Welcome

Installation

You can connect FILE0 to any project by following these steps.

PreviousIntroNextUpload

Last updated 11 months ago

1. Install

Install the file0 npm package. This will be your gateway to your files. You can import this package both in the server and client side.

npm install file0
pnpm add file0
yarn add file0

2. Connect

Connect to your project by adding your FILE0 app's secret key to you project's env variables.

F0_SECRET_KEY=f0_sk_*******************

How to obtain the secret key?

Create an account if you haven't already and copy the key from your app's setup guide.

3. Use FILE0 in your code

The environment variable will be automatically detected by the package, so you can start to execute commands right away.

import { f0 } from 'file0';

await f0.set('image.png', Buffer.from('My image'));
🎉
https://www.file0.dev/dashboard
Copy your secret key
Logo