chore: update documentation

This commit is contained in:
Lucas Nogueira
2026-09-22 11:30:47 -03:00
parent d869c162a7
commit a87a3c7d44
104 changed files with 4875 additions and 222 deletions
+45 -1
View File
@@ -20,21 +20,28 @@ use tauri::{
};
use tiny_http::{Header, Response as HttpResponse, Server};
/// An incoming HTTP request received by the localhost server, passed to the
/// [`Builder::on_request`] hook.
pub struct Request {
url: String,
}
impl Request {
/// The request URL (path and, if present, query string), exactly as sent by the client.
pub fn url(&self) -> &str {
&self.url
}
}
/// The HTTP response the localhost server is about to send back for a matched asset. Passed
/// mutably to the [`Builder::on_request`] hook so it can add or override headers before the
/// response is written to the client.
pub struct Response {
headers: HashMap<String, String>,
}
impl Response {
/// Adds a header to the response, replacing any existing header with the same name.
pub fn add_header<H: Into<String>, V: Into<String>>(&mut self, header: H, value: V) {
self.headers.insert(header.into(), value.into());
}
@@ -42,6 +49,11 @@ impl Response {
type OnRequest = Option<Box<dyn Fn(&Request, &mut Response) + Send + Sync>>;
/// Builds the localhost plugin.
///
/// **Note: This plugin brings considerable security risks and you should only use it if you know
/// what you are doing. Because the server has no authentication, any local process can connect to
/// it and read the assets it serves. If in doubt, use the default custom protocol implementation.**
pub struct Builder {
port: u16,
host: Option<String>,
@@ -49,6 +61,23 @@ pub struct Builder {
}
impl Builder {
/// Creates a new [`Builder`] that will serve the app's assets on the given `port`, bound to
/// `localhost` unless [`Self::host`] is called.
///
/// # Examples
///
/// ```no_run
/// fn setup<R: tauri::Runtime>(builder: tauri::Builder<R>) -> tauri::Builder<R> {
/// builder.plugin(
/// tauri_plugin_localhost::Builder::new(9527)
/// .host("127.0.0.1")
/// .on_request(|request, response| {
/// println!("{}", request.url());
/// })
/// .build(),
/// )
/// }
/// ```
pub fn new(port: u16) -> Self {
Self {
port,
@@ -57,12 +86,15 @@ impl Builder {
}
}
// Change the host the plugin binds to. Defaults to `localhost`.
/// Sets the host the localhost server binds to. Defaults to `localhost`.
pub fn host<H: Into<String>>(mut self, host: H) -> Self {
self.host = Some(host.into());
self
}
/// Sets a hook that is called for every request that resolves to a known frontend asset,
/// right before the response is sent. Use it to inspect the [`Request`] and add or override
/// headers on the [`Response`], for example to append custom CORS or caching headers.
pub fn on_request<F: Fn(&Request, &mut Response) + Send + Sync + 'static>(
mut self,
f: F,
@@ -71,6 +103,18 @@ impl Builder {
self
}
/// Builds the plugin, ready to be registered with [`tauri::Builder::plugin`].
///
/// On setup it spawns a background thread that starts a `tiny_http` server bound to
/// `host:port`. For every incoming request whose path resolves to a known frontend asset, the
/// server responds with that asset's bytes, automatically setting the `Content-Type`, the
/// `Content-Security-Policy` (when the asset has one) and a `Cache-Control: no-cache` header,
/// then invoking the [`Self::on_request`] hook (if any) before writing the response.
///
/// # Panics
///
/// Panics on the background thread if the server fails to bind to `host:port`, or if it fails
/// to send a response for a request.
pub fn build<R: Runtime>(mut self) -> TauriPlugin<R> {
let port = self.port;
let host = self.host.unwrap_or("localhost".to_string());