manadinho / vue-fast-debugger

This is a package to send data to desktop application to show and debug issue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fast-debugger

By using Fast Debugger, you can expedite the process of troubleshooting NodeJS code and resolving issues. First install Fast Debugger desktop application according your operating system. Now you are ready to receive log data from Laravel, Vue or Node projects.

download desktop application

mac. windows. linux.

installation

npm i vue-fast-debugger --save-dev

Usage

To use Fast Debugger first add the plugin to your Vue.js application:

import Vue from 'vue';
import FastDebuggerPlugin from 'my-vue-package';

Vue.use(FastDebuggerPlugin);

You can now use the $fast method in your Vue.js components

export default {
  mounted() {
    this.$fast('FAST DEBUGGER IS WORKING');
  }
};

You can specify flag to identify your specific log by chainig flag() method

export default {
  mounted() {
    this.$fast('FAST DEBUGGER IS WORKING').flag('FLAG TO IDENTIFY');
  }
};

On log data you can see file name and line number from the fast() method is called. You can open file in VSCODE by simply clicking on file name.

About

This is a package to send data to desktop application to show and debug issue


Languages

Language:JavaScript 100.0%