SkillAgentSearch skills...

Kuker

Kick-ass browser extension to debug your apps

Install / Use

/learn @krasimir/Kuker
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

kuker


<p align="center"> Kuker :heart: <a href="#integration-with-react">React (Supports only React 14.x.x. Sorry!)</a>, <a href="#integration-with-angular">Angular</a>, <a href="#integration-with-vue">Vue & Vuex</a>, <a href="#integration-with-redux">Redux</a>, <a href="#integration-with-redux-saga">redux-saga</a>, <a href="#html-emitter">HTML</a>, <a href="#integration-with-stent">Stent</a>, <a href="#integration-with-machinajs">Machina.js</a>, <a href="#integration-with-mobx">MobX</a> </p>

Kuker


<p align="center">You want your framework listed here? Check out the <a href="#emitters">Emitters</a> section and learn how to integrate it with Kuker.</p>

How to use it

Features

  • Tracking of events/actions in your app
  • Tracking of application state and its mutations
  • Monitoring of server-side rendering (via Socket.io)
  • Filtering of events/actions and focusing on specific portion of the application state
  • Monitoring for changes in a specific portion of the state
  • Filtering of event sources
  • Clearing all the events or adding a red flag so you know which are the new ones

Philosophy

If you build software you probably know that debugging what you just wrote is really important. Without seeing how your code works on a lower level you can't say that something is done. Finding and fixing bugs is also important. And without a proper tool it becomes difficult and time consuming. Kuker is here to help by improving your workflow.


I'm working with React, Redux and redux-saga last years and they seem to have pretty active community. Community that built awesome tools which improve the developer experience. One of these tools is Redux-DevTools. I got lots of ideas from there and my goal in the beginning was to write (for fun) a clone with a little bit more features. Stuff which I wanted to see. However, later I realized that this may be used out of Redux context and basically support every library or framework. It answers of two important questions.

  • What is going on in my application? In Redux this is pretty much the actions which fly around. But in your app this may be events or streams. It is just an action that happened at specific point of time. Think about a timeline with bunch keyframes.
  • How my application state changes based on these actions/events? Seeing how your app state mutates based on actions is priceless. You are able to spot bugs and see what is causing them. What state means depends on the context. For Redux this is the store, for React this is the React tree.

The extension answers on these two questions. We have two panels. The one on the left shows a list of all the actions/events in your application while the one on the right displays the state after each one of them.

The following screenshot demonstrate how the extension works with React emitter and Redux emitter plugged in:

Kuker

Kuker

Instrumentation

To make the extension work you have to instrument your application. You have to add an emitter which listens for actions/events on your side and sends them to Kuker.

Emitters

Installing emitters

yarn add kuker-emitters or npm install kuker-emitters. There're also standalone versions in here. You may grab the file, include it in your page and you'll a global like ReduxEmitter, ReduxSagaEmitter or ReactEmitter.

Integration with React

import { ReactEmitter } from 'kuker-emitters';

ReactEmitter();

screenshot react emitter

Integration with Angular

import { AngularEmitter } from 'kuker-emitters';

AngularEmitter();

AngularEmitter accepts a single parameter options which by default is equal to { rootSelector: 'app-root' }. The root element in a Angular app is usually app-root (at least in the latest versions). If it happens to be a different one set the proper selector. Also you should compile your app in a development mode. Otherwise ng.probe is not available and the emitter can not send events.

screenshot angular emitter

Integration with Vue

import { VueEmitter } from 'kuker-emitters';

VueEmitter();

The same VueEmitter works for Vuex too.

screenshot vue emitter

Integration with Redux

import { createStore, applyMiddleware } from 'redux';
import { ReduxEmitter } from 'kuker-emitters';

const middleware = ReduxEmitter();

const store = createStore(<reducer>, applyMiddleware(middleware));

screenshot redux emitter

Integration with redux-saga

import { createStore, applyMiddleware } from 'redux';
import { ReduxSagaEmitter } from 'kuker-emitters';
import createSagaMiddleware from 'redux-saga';

const emitter = ReduxSagaEmitter();
const sagaMiddleware = createSagaMiddleware({ sagaMonitor: emitter.sagaMonitor });

const store = createStore(<reducer>, applyMiddleware(sagaMiddleware));

// This bit is really important.
// Without it you won't get the current state of the app with every event.
emitter.setStore(store);

sagaMiddleware.run(rootSaga)

screenshot redux-saga

HTML emitter

import { HTMLEmitter } from 'kuker-emitters';

HTMLEmitter();

Codepen example

screenshot redux-saga

Integration with Stent

import { Machine } from 'stent';
import { StentEmitter } from 'kuker-emitters';

Machine.addMiddleware(StentEmitter());

Codepen example

screenshot stent

Integration with Machina.js

import machina from 'machina';
import { MachinaEmitter } from 'kuker-emitters';

const machine = new machina.Fsm({...});

MachinaEmitter(machine);

Codepen example

screenshot machina

Integration with MobX

import { MobXEmitter } from 'kuker-emitters';
import { spy, observable, action } from 'mobx';

class Person {
  @observable age = 33;
  @action newYear() {
    this.age += 1;
  }
}

const person = new Person();

MobXEmitter(spy, [ person ]);

Codepen example

screenshot mobx

BaseEmitter

import { BaseEmitter } from 'kuker-emitters';

const emit = BaseEmitter();

emit({
  type: 'adding money to my account',
  label: 'hello',
  state: { bank: { money: 100 } },
  icon: 'fa-money',
  color: '#bada55'
});

Codepen example

screenshot base emitter

Writing your own Emitter

Of course you don't have to use any of these emitters to enjoy Kuker. You may send a message on your own using the postMessage API:

window.postMessage({
  kuker: true,
  type: 'adding money to my account',
  origin: 'something',
  label: 'hello',
  time: (new Date()).getTime(),
  state: { bank: { money: 100 } },
  icon: 'fa-money',
  color: '#bada55'
}, '*');

The result of this postMessage call is as follows:

custom event

The only required properties are type and kuker: true. You may skip the others if you want. icon is one of the FontAwesome icons.

T

Related Skills

View on GitHub
GitHub Stars656
CategoryDevelopment
Updated12d ago
Forks17

Languages

JavaScript

Security Score

95/100

Audited on Mar 18, 2026

No findings