Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reactiveui/reactive.wasm
A Web Assembly versions of the System.Reactive classes.
https://github.com/reactiveui/reactive.wasm
Last synced: 3 months ago
JSON representation
A Web Assembly versions of the System.Reactive classes.
- Host: GitHub
- URL: https://github.com/reactiveui/reactive.wasm
- Owner: reactiveui
- License: mit
- Created: 2019-06-11T15:05:20.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-31T02:41:49.000Z (9 months ago)
- Last Synced: 2024-04-13T21:44:24.097Z (9 months ago)
- Language: C#
- Size: 50.8 KB
- Stars: 12
- Watchers: 10
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Enables Rx extensions in web-assembly projects.
Original implementation based on the [Uno.Rx.NET](https://github.com/nventive/Uno.Rx.NET) repo.A reference to the [`Reactive.Wasm`](https://www.nuget.org/packages/Reactive.Wasm) NuGet package should be added, and then it must be manually enabled, preferably in the entry point of your app (i.e. at the beginning of the `Main` method in your WASM project), call the following:
```c#
#pragma warning disable CS0618 // Type or member is obsolete
PlatformEnlightenmentProvider.Current.EnableWasm();
#pragma warning restore CS0618 // Type or member is obsolete
```