vue-fast-debugger
v1.0.0
Published
This is a package to send data to desktop application to show and debug issue
Downloads
3
Readme
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
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.