Socket
Socket
Sign inDemoInstall

@anexia/rxjs-spy-devtools-plugin

Package Overview
Dependencies
61
Maintainers
8
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @anexia/rxjs-spy-devtools-plugin

RxJS DevTools plugin for rxjs-spy


Version published
Weekly downloads
25
decreased by-55.36%
Maintainers
8
Install size
13.4 MB
Created
Weekly downloads
 

Readme

Source

rxjs-spy-devtools-plugin

Usage

  1. Install in your project: yarn add rxjs-spy-devtools-plugin

  2. Add the plugin to your: rxjs-spy

import DevToolsPlugin from 'rxjs-spy-devtools-plugin';

const spy = create();
const devtoolsPlugin = new DevToolsPlugin(spy, {
  verbose: false,
});
spy.plug(devtoolsPlugin);

// We must teardown the spy if we're hot-reloading:
if (module.hot) {
  if (module.hot) {
    module.hot.dispose(() => {
      spy.teardown();
    });
  }
}
  1. Tag the streams that you wish to inspect in devtools.

  2. Load the chrome extension

Develop

yarn start

Build

yarn build

Publish new version

yarn deploy

  1. Run yarn start. This will continuously build the package when you make changes in /src.
  2. Run yarn link. This allows yarn to install the package via symlinks.
  3. In the root folder of the repostiory that you would like to link (i.e. ardoq-front), run yarn link rxjs-spy-devtools-plugin. This tells yarn to install the package from the dist folder.

Now any changes that you make in /src should be automatically reflected in the repository where you linked the package. Later, you might want to use the published version of the package again. Run yarn unlink rxjs-spy-devtools-plugin from within the linked repo (i.e. ardoq-front).

FAQs

Last updated on 25 Nov 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc