Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
latest
withroka/rokaWorks with
•JSR Score100%•This package works with DenoIt is unknown whether this package works with Cloudflare Workers, Node.js, Bun, Browsers




License
•MIT
Published23 hours ago (0.1.0)
🧩 Manage file system
A library for working with the file system, complementary to the standard @std/fs library.
Finding files and directories
import { find } from "@roka/fs/find"; const files = find(["."], { name: "*.ts" }); for await (const _ of files) { // ... }
Temporary directories
import { tempDirectory } from "@roka/fs/temp"; await using directory = await tempDirectory(); await Deno.writeTextFile(directory.path("file.txt"), "Hello, world!");
Modules
Built and signed on
GitHub Actions
Add Package
deno add jsr:@roka/fs
Import symbol
import * as fs from "@roka/fs";
Import directly with a jsr specifier
import * as fs from "jsr:@roka/fs";