Skip to content

Commit 7bb2161

Browse files
authored
docs: Update Deno SDK readme (#9486)
1 parent 8f862a9 commit 7bb2161

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/deno/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
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
2324
hook 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
2631
import * as Sentry from 'npm:@sentry/deno';
2732

2833
Sentry.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
3540
functions will not perform any action before you have called `init()`:
3641

3742
```javascript

0 commit comments

Comments
 (0)