Star us on GitHub
Star
Menu
Docs / Getting Started / For your Backend / Firebase Backend

Firebase Backend

Highlight's @highlight-run/node package includes wrappers for Firebase Cloud Functions, which will automatically report backend errors to Highlight and link them to the frontend sessions that caused them.

Getting Started

This backend SDK requires one of our Client SDKs to be installed, so please follow the instructions there if you have not done so.

For server-side linking to Highlight sessions, your client-side call to H.init should include the tracingOrigins setting. See H.init() for more details.

H.init('<YOUR_PROJECT_ID>', { ... tracingOrigins: true, ... });
Copy
Adding Highlight to your Backend

Import the @highlight-run/node package

# with npm npm install @highlight-run/node # with yarn yarn add @highlight-run/node
Copy
Wrap your Cloud Functions
const highlightNode = require('@highlight-run/node') // Callable function wrapper exports.exampleCallable = functions.https.onCall( highlightNode.Handlers.firebaseCallableFunctionHandler( (data, context) => { // ... your handler code here return { result: 'useful result!' } }, { projectID: 'YOUR_PROJECT_ID' }, ), )
Copy
const highlightNode = require('@highlight-run/node') // Http function wrapper exports.exampleHttp = functions.https.onRequest( highlightNode.Handlers.firebaseHttpFunctionHandler( (req, res) => { // ... your handler code here res.json({ result: 'useful result!' }) }, { projectID: 'YOUR_PROJECT_ID' }, ), )
Copy
Verify

To view and resolve the recorded error, log into app.highlight.io/errors and open your project. Clicking on the error's title will open a page where you can see detailed information and mark it as resolved. You can also view frontend sessions where the error was thrown, and see the individual request which caused the error.