skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

netlify-blobs

Key-value object storage for files and data

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/netlify/context-and-tools --skill netlify-blobs

Overview

What This Skill Does

Netlify Blobs is zero-config object storage built into the Netlify platform. It works from functions, edge functions, and framework server routes without any provisioning. Supports CRUD operations, metadata, prefix-based listing, and both site-scoped and deploy-scoped stores.

Application

When to use this Skill

Documentation

Show Skills.md file

Netlify Blobs

Netlify Blobs is zero-config object storage for files and assets: images, documents, uploads, exports, cached binary artifacts. Available from any Netlify compute (functions, edge functions, framework server routes). No provisioning required.

Not for dynamic data. If the project needs to store records, user data, application state, or anything queryable, use Netlify Database instead — see netlify-database/SKILL.md. Reach for Blobs when the thing you're storing is a file or an asset blob, not a record.

npm install @netlify/blobs

Getting a Store

import { getStore } from "@netlify/blobs";

const store = getStore({ name: "my-store" });

// Use "strong" consistency when you need immediate reads after writes
const store = getStore({ name: "my-store", consistency: "strong" });

CRUD Operations

These are the only store methods. Do not invent others.

Lines 1 - 25 of 96

Recommendations

Explore other random skills

All skillsMy patterns