1.0.0 • Published 1 year ago

vue-fast-debugger v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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.

1.0.0

1 year ago

1.0.2

1 year ago