# s3-block-store **Repository Path**: mirrors_mikeal/s3-block-store ## Basic Information - **Project Name**: s3-block-store - **Description**: S3 IPLD Block Store - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # s3-block-store Storage functions `@ipld/block` interface. ```javascript const s3 = require('s3-block-store') const store = s3('bucketName') const { get, put, has } = store ``` ## get(cid) Return `Block` instance. ## has(cid) Return false or integer (size). ## put(block) Stores block instance by attached CID.