Using Ray with Express.js
You can send information from Express.js applications to Ray via this third party package:
#Installing the package
You can install this third-party package using either npm
or yarn
:
npm install express-ray yarn add express-ray
#Installing the plugin
To install the express-ray
plugin into your Express.js application, call the install
method provided by the plugin
import:
import { plugin as expressRayPlugin } from 'express-ray'; const app = express(); expressRayPlugin.install(app);