islands-core 0.1.0

Server-side SSR primitives for islands.rs: island markers, the page shell, the asset manifest, and streaming Suspense.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod error;
pub mod markup;
#[cfg(feature = "suspense")]
pub mod stream;
#[cfg(feature = "suspense")]
pub mod suspense;

pub use error::CoreError;
pub use markup::{
    island_marker, page_shell, page_shell_static, Manifest, ManifestEntry,
};

#[cfg(feature = "suspense")]
pub use markup::page_shell_streaming_head;
#[cfg(feature = "suspense")]
pub use stream::{render_streaming, render_streaming_with, HtmlChunk, StreamError};
#[cfg(feature = "suspense")]
pub use suspense::{Suspense, REPLACE_SCRIPT};