Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```