File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 12
12
13
13
## Links
14
14
15
- - [ SDK on Deno registry] ( https://deno.land/x/sentry )
16
15
- [ Official SDK Docs] ( https://docs.sentry.io/quickstart/ )
17
16
- [ TypeDoc] ( http://getsentry.github.io/sentry-javascript/ )
18
17
@@ -21,14 +20,13 @@ The Sentry Deno SDK is in beta. Please help us improve the SDK by
21
20
22
21
## Usage
23
22
23
+ > DEPRECATION NOTICE: The Sentry Deno SDK as published on the Deno registry (deno.land) is deprecated.
24
+ > Import the package from the npm registry instead.
25
+
24
26
To use this SDK, call ` Sentry.init(options) ` as early as possible in the main entry module. This will initialize the SDK
25
27
and hook into the environment. Note that you can turn off almost all side effects using the respective options.
26
28
27
29
``` javascript
28
- // Import from the Deno registry
29
- import * as Sentry from ' https://deno.land/x/sentry/index.mjs' ;
30
-
31
- // or import from npm registry
32
30
import * as Sentry from ' npm:@sentry/deno' ;
33
31
34
32
Sentry .init ({
You can’t perform that action at this time.
0 commit comments