#file #desktop #web #async #load-file #request #serve

platter2

Load files on web and desktop asynchronously

2 releases

0.1.6 Aug 5, 2022
0.1.5 Aug 5, 2022

#1149 in Filesystem

Download history 251/week @ 2023-12-13 225/week @ 2023-12-20 77/week @ 2023-12-27 126/week @ 2024-01-03 173/week @ 2024-01-10 188/week @ 2024-01-17 157/week @ 2024-01-24 104/week @ 2024-01-31 185/week @ 2024-02-07 244/week @ 2024-02-14 416/week @ 2024-02-21 240/week @ 2024-02-28 238/week @ 2024-03-06 191/week @ 2024-03-13 266/week @ 2024-03-20 277/week @ 2024-03-27

991 downloads per month
Used in 15 crates (via notan_app)

MIT OR Apache-2.0 OR Zlib

11KB
173 lines

platter2

This is a fork of platter with some upgrades and fixes.

Thanks, @ryanisaacg, for your hard work.

--

A simple utility to serve you files on a platter

platter2 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 platter2 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