From b10d9fcbb76a6d8135b4c9a963d205e0b79c0da9 Mon Sep 17 00:00:00 2001 From: Tim Fish Date: Mon, 15 Jul 2024 13:01:29 +0200 Subject: [PATCH] lint --- packages/node/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/node/README.md b/packages/node/README.md index e1c605c2789c..6471538fb4f0 100644 --- a/packages/node/README.md +++ b/packages/node/README.md @@ -37,15 +37,16 @@ Sentry.init({ // ... }); ``` + You need to require or import the `instrument.js` file before importing any other modules in your application. This is necessary to ensure that Sentry can automatically instrument all modules in your application: ```js // Import this first! -import "./instrument"; +import './instrument'; // Now import other modules -import http from "http"; +import http from 'http'; // Your application code goes here ```