Skip to content

Playground for RxJS experimenting. Supports TypeScript or Javascript.

Notifications You must be signed in to change notification settings

emeraldwalk/rxjs-playground

Repository files navigation

RxjsPlayground

This playground can be used to experiment with RxJS. Simply write RxJS code in the editor, and it will run automatically.

Live instance can be found here: https://emeraldwalk.github.io/rxjs-playground/

Features

  • TypeScript support - The TypeScript compiler is invoked on all content, so you can write in .js or .ts
  • console.log has been redirected so that you can log to the output panel by using console.log

Example

The following will output 1 2 3 to the output panel.

let subject = new Rx.Subject<number>();

subject.subscribe(res => {
    console.log(res));
}

[1, 2, 3].forEach(i => {
    subject.next(i);
});

// 1
// 2
// 3

About

Playground for RxJS experimenting. Supports TypeScript or Javascript.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages