π deno_kv_fs
Important
Please give a star! β
π Introduction
deno_kv_fs is a Deno KV file system, compatible with Deno Deploy. It saves files in 64KB chunks, allowing you to organize files into directories. You can control the KB/s rate for saving and reading files, impose rate limits, set user space limits, and limit concurrent operationsβuseful for controlling uploads/downloads. It utilizes the Web Streams API.
π Contents
- π Introduction
- π§ How to Use
- π‘ Examples
- π‘ Sending File Progress in Real-Time
- π οΈ Useful Procedures Included
- π¦ All Imports
- π¨βπ» About
π§ How to Use
Instantiate the DenoKvFs
class:
import { DenoKvFs } from "https://deno.land/x/deno_kv_fs/mod.ts";
const kvFs = new DenoKvFs();
// If you want to use your existing instance of Deno.Kv
const myDenoKV = await Deno.openKv(/* your parameters */);
const kvFs = new DenoKvFs(myDenoKV);
- Accepts any stream as input.
- Returns a generic stream of
type: "bytes"
. - Incompletely saved files are automatically deleted.
- Read methods return the processing status of a file (useful for knowing progress).
- If a file does not exist,
null
is returned.
Save Method Interface
The save
method is used to save files:
interface SaveOptions {
path: string[]; // Mandatory. The root directory is []
content: ReadableStream | Uint8Array | string; // Mandatory
chunksPerSecond?: number;
clientId?: string | number;
validateAccess?: (path: string[]) => Promise<boolean> | boolean;
maxClientIdConcurrentReqs?: number;
maxFileSizeBytes?: number;
allowedExtensions?: string[];
}
Read, ReadDir, Delete, and DeleteDir Method Interface
These methods are intended to read and delete files:
interface ReadOptions {
path: string[]; // Mandatory
chunksPerSecond?: number;
maxDirEntriesPerSecond?: number;
clientId?: string | number;
validateAccess?: (path: string[]) => Promise<boolean> | boolean;
maxClientIdConcurrentReqs?: number;
pagination?: boolean; // If true, returns the cursor to the next page (if exists).
cursor?: string; // For readDir, if there is a next page.
}
π‘ Examples
πΎ Saving Data
import { DenoKvFs } from "https://deno.land/x/deno_kv_fs/mod.ts";
import { toReadableStream } from "https://deno.land/std/io/mod.ts";
const kvFs = new DenoKvFs();
const fileName = "myFile.txt";
let resData = await kvFs.save({
path: ["my_dir", fileName],
content: toReadableStream(await Deno.open(fileName)),
});
πΎ Saving Data Directly
Warning: This is not recommended as it can fill up your RAM. Use only for internal resources of your application. For optimized use, prefer an instance of
ReadableStream
.
const fileName = "myFile.txt";
let resData = await kvFs.save({
path: ["my_dir", fileName],
content: await Deno.readFile(fileName), // Or content: "myStringData"
});
π€ Saving Data from a Submitted Form
const reqBody = await request.formData();
const existingFileNamesInTheUpload: { [key: string]: number } = {};
const res: any = {};
for (const item of reqBody.entries()) {
if (item[1] instanceof File) {
const formField: any = item[0];
const fileData: any = item[1];
if (!existingFileNamesInTheUpload[fileData.name]) {
existingFileNamesInTheUpload[fileData.name] = 1;
} else {
existingFileNamesInTheUpload[fileData.name]++;
}
let prepend = "";
if (existingFileNamesInTheUpload[fileData.name] > 1) {
prepend += existingFileNamesInTheUpload[fileData.name].toString();
}
const fileName = prepend + fileData.name;
let resData = await kvFs.save({
path: ["my_dir", fileName],
content: fileData.stream(),
});
if (res[formField] !== undefined) {
if (Array.isArray(res[formField])) {
res[formField].push(resData);
} else {
res[formField] = [res[formField], resData];
}
} else {
res[formField] = resData;
}
}
}
console.log(res);
π In Frontend
<form
id="yourFormId"
enctype="multipart/form-data"
action="/upload"
method="post"
>
<input type="file" name="file1" multiple />
<br />
<input type="submit" value="Submit" />
</form>
<script>
var files = document.querySelector("#yourFormId input[type=file]").files;
var name = document
.querySelector("#yourFormId input[type=file]")
.getAttribute("name");
var form = new FormData();
for (var i = 0; i < files.length; i++) {
form.append(`${name}_${i}`, files[i]);
}
var res = await fetch(`/your_POST_URL`, {
// Fetch API automatically sets the form to "multipart/form-data"
method: "POST",
body: form,
}).then((response) => response.json());
console.log(res);
</script>
π₯ Returning Data
const fileName = "myFile.txt";
let resData = await kvFs.read({
path: ["my_dir", fileName],
});
response.body = resData.content; // resData.content is an instance of ReadableStream
π₯ Returning Data Directly
Warning: This is not recommended as it can fill up your RAM. Use only for internal resources of your application. For optimized use, use the
ReadableStream
(type: "bytes"
) that comes by default infile.content
.
const fileName = "myFile.txt";
let resData = await kvFs.read({
path: ["my_dir", fileName],
});
response.body = await DenoKvFs.readStream(resData.content); // Or await DenoKvFs.readStreamAsString(resData.content)
βοΈ Example Function to Control Data Traffic
const gigabyte = 1024 * 1024 * 1024;
const existingRequests = kvFs.getClientReqs(user.id); // The input parameter is the same as clientId
const chunksPerSecond = (user.isPremium() ? 20 : 1) / existingRequests;
const maxClientIdConcurrentReqs = user.isPremium() ? 5 : 1;
const maxFileSizeBytes = (user.isPremium() ? 1 : 0.1) * gigabyte;
// To read
let resData = await kvFs.read({
path: ["my_dir", fileName],
chunksPerSecond: chunksPerSecond,
maxClientIdConcurrentReqs: maxClientIdConcurrentReqs,
maxFileSizeBytes: maxFileSizeBytes,
clientId: user.id, // The clientId can also be the remote address of a request
});
response.body = resData.content;
// To delete
let resData = await kvFs.delete({
path: ["my_dir_2", fileName],
chunksPerSecond: chunksPerSecond,
maxClientIdConcurrentReqs: maxClientIdConcurrentReqs,
maxFileSizeBytes: maxFileSizeBytes,
clientId: user.id,
});
// Read directory
const maxDirEntriesPerSecond = user.isPremium() ? 1000 : 100;
let resData = await kvFs.readDir({
path: ["my_dir"],
chunksPerSecond: chunksPerSecond,
maxClientIdConcurrentReqs: maxClientIdConcurrentReqs,
maxFileSizeBytes: maxFileSizeBytes,
clientId: user.id,
maxDirEntriesPerSecond: maxDirEntriesPerSecond,
pagination: true, // Each page has 1000 entries
cursor: "JDhiasgPh", // If exists
});
// Delete directory
let resData = await kvFs.deleteDir({
path: ["my_dir"],
chunksPerSecond: chunksPerSecond,
maxClientIdConcurrentReqs: maxClientIdConcurrentReqs,
maxFileSizeBytes: maxFileSizeBytes,
clientId: user.id,
maxDirEntriesPerSecond: maxDirEntriesPerSecond,
});
// Controlling maximum user space
const maxAvailableSpace = (user.isPremium() ? 1 : 0.1) * gigabyte;
let dirList = await kvFs.readDir({
path: [user.id, "files"], // Example
});
if (dirList.size > maxAvailableSpace) {
throw new Error(
`You have exceeded the ${maxAvailableSpace} GB limit of available space.`,
);
}
// Validate access
let resData = await kvFs.readDir({
path: ["my_dir"],
validateAccess: async (path: string[]) =>
user.hasDirAccess(path) ? true : false,
});
π‘ Sending File Progress in Real-Time
To send file progress updates in real-time, you can use:
kvFs.onFileProgress = (status: FileStatus) => {
webSocket.send(JSON.stringify(status));
};
π οΈ Useful Procedures Included
Reading a Stream as Uint8Array:
static async readStream(stream: ReadableStream): Promise<Uint8Array>;
Reading a Stream as String:
static async readStreamAsString(stream: ReadableStream): Promise<string>;
Get Client Requests:
getClientReqs(clientId: string | number): number;
Get All File Statuses:
getAllFilesStatuses(): FileStatus[];
Convert Path to URI Component:
pathToURIComponent(path: string[]): string;
Convert URI Component to Path:
URIComponentToPath(path: string): string[];
Save a File:
async save(options: SaveOptions): Promise<FileStatus | File>;
Read a File:
async read(options: ReadOptions): Promise<File | FileStatus | null>;
Read a Directory:
async readDir(options: ReadOptions): Promise<DirList>;
Delete a File:
async delete(options: ReadOptions): Promise<void | FileStatus>;
Delete a Directory:
async deleteDir(options: ReadOptions): Promise<FileStatus[]>;
π¦ All Imports
import {
DenoKvFs,
DirList,
File,
FileStatus,
ReadOptions,
SaveOptions,
} from "jsr:@hviana/deno-kv-fs";
π¨βπ» About
Author: Henrique Emanoel Viana, a Brazilian computer scientist and web technology enthusiast.
- π Phone: +55 (41) 99999-4664
- π Website: https://sites.google.com/view/henriqueviana
Improvements and suggestions are welcome!