1.1.1 • Published 2 years ago

@rxjs-debugging/runtime-webpack v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Archie the Debugger Owl @rxjs-debugging/runtime-webpack

Webpack plugin to debug RxJS-based web applications with RxJS Debugging for Visual Studio Code.

npm version

In order to debug an RxJS-based web application bundled using Webpack with RxJS Debugging for Visual Studio Code, the @rxjs-debugging/runtime-webpack plugin is required.

The plugin augments RxJS so the debugger can communicate with your application at runtime. This augmentation happens only during development, hence your production builds will stay clear of any debugging augmentation.

runtime-webpack Demo

Usage

  1. Install @rxjs-debugging/runtime-webpack:

    npm i -D @rxjs-debugging/runtime-webpack
    yarn add -D @rxjs-debugging/runtime-webpack
  2. Import and add the RxJSDebuggingPlugin to your Webpack configuration:

    import RxJSDebuggingPlugin from '@rxjs-debugging/runtime-webpack';
    
    export default {
      // your configuration
      plugins: [
        // your plugins
        new RxJSDebuggingPlugin() // <-- Add this line
      ]
    };
  3. (Re-)start Webpack and debug your web application with RxJS Debugging for Visual Studio Code.

Example

The Webpack Testbench demonstrates how @rxjs-debugging/runtime-webpack can be integrated allowing to debug a web application with RxJS Debugging for Visual Studio Code.

1.1.1

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.9.0

2 years ago

0.0.9

2 years ago

1.0.0-alpha.7

2 years ago

0.0.2

3 years ago

0.0.1

3 years ago