File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
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 )
15
16
- [ Official SDK Docs] ( https://docs.sentry.io/quickstart/ )
16
17
- [ TypeDoc] ( http://getsentry.github.io/sentry-javascript/ )
17
18
@@ -23,6 +24,10 @@ To use this SDK, call `Sentry.init(options)` as early as possible in the main en
23
24
hook into the environment. Note that you can turn off almost all side effects using the respective options.
24
25
25
26
``` javascript
27
+ // Import from the Deno registry
28
+ import * as Sentry from " https://deno.land/x/sentry/index.mjs" ;
29
+
30
+ // or import from npm registry
26
31
import * as Sentry from ' npm:@sentry/deno' ;
27
32
28
33
Sentry .init ({
@@ -31,7 +36,7 @@ Sentry.init({
31
36
});
32
37
```
33
38
34
- To set context information or send manual events, use the exported functions of ` @sentry/deno ` . Note that these
39
+ To set context information or send manual events, use the exported functions of the Deno SDK . Note that these
35
40
functions will not perform any action before you have called ` init() ` :
36
41
37
42
``` javascript
You can’t perform that action at this time.
0 commit comments