sycamore 0.8.0-beta.1

A VDOM-less web library with fine grained reactivity
docs.rs failed to build sycamore-0.8.0-beta.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: sycamore-0.9.0-beta.2

Sycamore API Documentation

Sycamore is a VDOM-less web library with fine-grained reactivity.

This is the API docs for sycamore. If you are looking for the usage docs, checkout the Sycamore Book.

Feature Flags

  • dom (default) - Enables rendering templates to DOM nodes. Only useful on wasm32-unknown-unknown target.
  • experimental-builder-agnostic - Enables the agnostic backend builder API.
  • experimental-builder-html - Enables the HTML specific backend builder API. Also enables experimental-builder-agnostic.
  • experimental-hydrate - Enables client-side hydration support.
  • futures - Enables wrappers around wasm-bindgen-futures to make it easier to extend a reactive scope into an async function.
  • ssr - Enables rendering templates to static strings (useful for Server Side Rendering / Pre-rendering).
  • serde - Enables serializing and deserializing Signals and other wrapper types using serde.
  • wasm-bindgen-interning (default) - Enables interning for wasm-bindgen strings. This improves performance at a slight cost in binary size. If you want to minimize the size of the result .wasm binary, you might want to disable this.