@fedify/h3 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -1
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -5,7 +5,10 @@
|
|
|
5
5
|
[![Matrix][Matrix badge]][Matrix]
|
|
6
6
|
[![Follow @fedify@hollo.social][@fedify@hollo.social badge]][@fedify@hollo.social]
|
|
7
7
|
|
|
8
|
-
This package provides a simple way to integrate [Fedify] with [h3]
|
|
8
|
+
This package provides a simple way to integrate [Fedify] with [h3],
|
|
9
|
+
an HTTP server framework behind [Nitro], [Analog], [Vinxi],
|
|
10
|
+
[SolidStart], [TanStack Start], and other many web frameworks.
|
|
11
|
+
|
|
9
12
|
The integration code looks like this:
|
|
10
13
|
|
|
11
14
|
~~~~ typescript
|
|
@@ -38,11 +41,22 @@ app.use(router);
|
|
|
38
41
|
[@fedify@hollo.social]: https://hollo.social/@fedify
|
|
39
42
|
[Fedify]: https://fedify.dev/
|
|
40
43
|
[h3]: https://h3.unjs.io/
|
|
44
|
+
[Nitro]: https://nitro.unjs.io/
|
|
45
|
+
[Analog]: https://analogjs.org/
|
|
46
|
+
[Vinxi]: https://vinxi.vercel.app/
|
|
47
|
+
[SolidStart]: https://start.solidjs.com/
|
|
48
|
+
[TanStack Start]: https://tanstack.com/start
|
|
41
49
|
|
|
42
50
|
|
|
43
51
|
Changelog
|
|
44
52
|
---------
|
|
45
53
|
|
|
54
|
+
### Version 0.1.1
|
|
55
|
+
|
|
56
|
+
Released on August 6, 2024.
|
|
57
|
+
|
|
58
|
+
- Added missing entry points to the *package.json*.
|
|
59
|
+
|
|
46
60
|
### Version 0.1.0
|
|
47
61
|
|
|
48
62
|
Initial release. Released on July 6, 2024.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/h3",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Integrate Fedify with h3",
|
|
5
5
|
"keywords": ["Fedify", "h3"],
|
|
6
6
|
"author": {
|
|
@@ -17,9 +17,21 @@
|
|
|
17
17
|
"bugs": {
|
|
18
18
|
"url": "https://github.com/dahlia/fedify-h3/issues"
|
|
19
19
|
},
|
|
20
|
+
"funding": [
|
|
21
|
+
"https://github.com/sponsors/dahlia",
|
|
22
|
+
"https://toss.me/hongminhee"
|
|
23
|
+
],
|
|
20
24
|
"type": "module",
|
|
21
25
|
"module": "dist/index.js",
|
|
22
26
|
"types": "dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"default": "./dist/index.js"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
23
35
|
"files": ["src/", "dist/"],
|
|
24
36
|
"devDependencies": {
|
|
25
37
|
"@biomejs/biome": "1.8.3",
|