```ts const foo = Bun.file("foo.txt");
Scanned 5/28/2026
Install via CLI
openskills install loclv/llm-lean-log# Bun - JS runtime
## File API
```ts
const foo = Bun.file("foo.txt");
if (await foo.exists()) {
console.log("foo.txt exists");
}
await foo.text(); // contents as a string
await foo.json(); // contents as a JSON object
```
No comments yet. Be the first to comment!