You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+
## 0.15.1 - 2025-05-26
11
+
12
+
### Added
13
+
14
+
* Added support for publishing on the [JavaScript Registry (JSR)](https://jsr.io/).
15
+
16
+
### Fixed
17
+
18
+
* Fixed the `stream`, `iterate` and `EventBuffer#clear` methods not having explicit return types, resulting in [slow inference](https://jsr.io/docs/about-slow-types) in certain environments.
A dead simple, dependency-less, spec-compliant server-sent events implementation written in TypeScript.
@@ -47,7 +56,7 @@ Read the [Getting Started](https://matthewwid.github.io/better-sse/guides/gettin
47
56
48
57
# Installation
49
58
50
-
Install with any package manager:
59
+
Better SSE is published as a package on [npm](https://www.npmjs.com/package/better-sse) and the [JSR](https://jsr.io/@mwid/better-sse). You can install it with any package manager:
51
60
52
61
```sh
53
62
npm install better-sse
@@ -66,7 +75,7 @@ bun add better-sse
66
75
```
67
76
68
77
```sh
69
-
deno install npm:better-sse
78
+
deno install jsr:@mwid/better-sse
70
79
```
71
80
72
81
_Better SSE ships with types built in. No need to install from DefinitelyTyped for TypeScript users!_
Copy file name to clipboardExpand all lines: docs/src/content/docs/guides/getting-started.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ The technology can be used for things such as live notifications, news tickers,
40
40
41
41
### Install
42
42
43
-
Better SSE is shipped [as a package on npm](https://www.npmjs.com/package/better-sse). You can install it with any package manager.
43
+
Better SSE is shipped as a package on [npm](https://www.npmjs.com/package/better-sse) and the [JSR](https://jsr.io/@mwid/better-sse). You can install it with any package manager.
44
44
45
45
<Tabs>
46
46
<TabItemlabel="npm">
@@ -56,7 +56,7 @@ Better SSE is shipped [as a package on npm](https://www.npmjs.com/package/better
0 commit comments