https://github.com/olaven/dio
Minimal file io library for Deno
https://github.com/olaven/dio
deno filesystem typescript-library
Last synced: 2 months ago
JSON representation
Minimal file io library for Deno
- Host: GitHub
- URL: https://github.com/olaven/dio
- Owner: olaven
- License: lgpl-2.1
- Created: 2020-07-26T21:59:59.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-11T17:06:01.000Z (about 4 years ago)
- Last Synced: 2025-08-22T18:00:02.854Z (10 months ago)
- Topics: deno, filesystem, typescript-library
- Language: TypeScript
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dio [](https://doc.deno.land/https/raw.githubusercontent.com/olaven/dio/master/mod.ts)
Minimal file io library for Deno.
See [the documentation](https://doc.deno.land/https/raw.githubusercontent.com/olaven/dio/master/mod.ts) (it's far from overwhelming)
```ts
import { read_file } from "https://denopkg.com/olaven/dio";
const content = await read_file("./README.md");
console.log(content);
```