4 releases

0.1.4 Dec 22, 2019
0.1.3 Dec 22, 2019
0.1.2 Dec 22, 2019
0.1.1 Oct 25, 2019
0.1.0 Oct 17, 2019

#1260 in Filesystem

Download history 90/week @ 2023-11-19 70/week @ 2023-11-26 44/week @ 2023-12-03 67/week @ 2023-12-10 81/week @ 2023-12-17 58/week @ 2023-12-24 19/week @ 2023-12-31 84/week @ 2024-01-07 95/week @ 2024-01-14 51/week @ 2024-01-21 32/week @ 2024-01-28 44/week @ 2024-02-04 75/week @ 2024-02-11 80/week @ 2024-02-18 86/week @ 2024-02-25 93/week @ 2024-03-03

341 downloads per month
Used in 3 crates (2 directly)

MIT OR Apache-2.0 OR Zlib

11KB
172 lines

platter

A simple utility to serve you files on a platter

platter works on both desktop and web, and returns a byte buffer of the file's contents. On desktop, load_file is backed by native file system APIs. On web, it is backed by an HTTP 'GET' request.

let file_contents = load_file("path_to_my_file").await?;

Web Support

To use platter on the web, enable either the web-sys feature (for wasm-pack and wasm-bindgen workflows) or the stdweb feature (for stdweb and cargo-web workflows).


lib.rs:

A simple utility to serve you files on a platter

platter works on both desktop and web, and returns a byte buffer of the file's contents. On desktop, load_file is backed by native file system APIs. On web, it is backed by an HTTP 'GET' request.

To use platter on the web, you'll need to choose either the stdweb or web-sys feature and enable it. This determines which method of binding to browser APIs platter will use.

Dependencies

~0.5–3MB
~60K SLoC