Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akesson/leptos-signals
A collection of signals for Leptos
https://github.com/akesson/leptos-signals
Last synced: 19 days ago
JSON representation
A collection of signals for Leptos
- Host: GitHub
- URL: https://github.com/akesson/leptos-signals
- Owner: akesson
- License: mit
- Created: 2022-12-01T15:14:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-13T06:36:33.000Z (about 2 years ago)
- Last Synced: 2024-12-06T23:05:50.692Z (about 2 months ago)
- Language: Rust
- Size: 26.4 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-leptos - leptos-signals
README
[![crates.io](https://img.shields.io/crates/v/leptos-signals)](https://crates.io/crates/leptos-signals)
[![Discord](https://img.shields.io/discord/1031524867910148188?color=%237289DA&label=discord)](https://discord.gg/YdRAhS7eQB)# leptos-signals
Different Signals for [Leptos](https://crates.io/crates/leptos):
[](http://https://crates.io/crates/leptos)
This is the start of what will hopefully become a collection of signals. PRs are welcome!
## KeyedSignal
A **KeyedSignal** associates a key with a value. This is typically used for caching, where a key is needed for searching in the cache.
See [example](examples/keyed-signal/src/app/mod.rs).