vue-ray
Debug your Vue code with Ray to fix problems faster.
This package can be installed in any Vue 2.x or Vue 3.x project to send messages to the Ray app.
Installation
Install with npm:
or yarn:
Installing in Vue 3
When using in a Vue 3.x project (the default), import the 'vue3' variant:
Installing in Vue 2
When using in a Vue 2.x project, import the 'vue2' variant:
Usage
Once the plugin is installed, you may access the ray()
method on this
as this.$ray()
.
See the node-ray reference for a full list of available methods.
Example Component
Intercepting errors (Vue 3)
The following will intercept errors in Vue 3 and send them to Ray as a red-labeled message:
Intercepting errors (Vue 2)
The following will intercept errors in Vue 2 and send them to Ray as a red-labeled message:
Development setup
npm install
npm run test
npm run build:all
Testing
vue-ray
uses Jest for unit tests. To run the test suite:
npm run test