File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 1212
1313## Links
1414
15+ - [ SDK on Deno registry] ( https://deno.land/x/sentry )
1516- [ Official SDK Docs] ( https://docs.sentry.io/quickstart/ )
1617- [ TypeDoc] ( http://getsentry.github.io/sentry-javascript/ )
1718
@@ -23,6 +24,10 @@ To use this SDK, call `Sentry.init(options)` as early as possible in the main en
2324hook into the environment. Note that you can turn off almost all side effects using the respective options.
2425
2526``` 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
2631import * as Sentry from ' npm:@sentry/deno' ;
2732
2833Sentry .init ({
@@ -31,7 +36,7 @@ Sentry.init({
3136});
3237```
3338
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
3540functions will not perform any action before you have called ` init() ` :
3641
3742``` javascript
You can’t perform that action at this time.
0 commit comments