node-turbo 1.2.3 → 1.2.5
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/LICENSE +1 -1
- package/README.md +6 -6
- package/docs/API.md +2 -2
- package/package.json +13 -13
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -55,11 +55,11 @@ node-turbo has been tested with 100% code coverage with the following engines/li
|
|
|
55
55
|
|
|
56
56
|
| Name | Version(s) |
|
|
57
57
|
| :--- | :--- |
|
|
58
|
-
| [
|
|
59
|
-
| [
|
|
60
|
-
| [Koa](https://koajs.com/) | 2.14.2 -
|
|
61
|
-
| [Express](https://expressjs.com/) | 4.18.2 -
|
|
62
|
-
| [ws](https://github.com/websockets/ws) | 8.15.1 - 8.18.
|
|
58
|
+
| [Hotwire Turbo](https://turbo.hotwired.dev/) | 7.3.0 - 8.0.13 |
|
|
59
|
+
| [Node.js](https://nodejs.org/) | 16.6 - 22.17.1 |
|
|
60
|
+
| [Koa](https://koajs.com/) | 2.14.2 - 3.0.1 |
|
|
61
|
+
| [Express](https://expressjs.com/) | 4.18.2 - 5.1.0 |
|
|
62
|
+
| [ws](https://github.com/websockets/ws) | 8.15.1 - 8.18.3 |
|
|
63
63
|
|
|
64
64
|
## API docs
|
|
65
65
|
See [`/docs/API.md`](./docs/API.md) for a documentation of all node-turbo classes and functions.
|
|
@@ -720,4 +720,4 @@ app.listen(config.port);
|
|
|
720
720
|
```
|
|
721
721
|
## License
|
|
722
722
|
|
|
723
|
-
node-turbo is © 2024 Walter Krivanek and released under the [MIT license](https://mit-license.org).
|
|
723
|
+
node-turbo is © 2024-2025 Walter Krivanek and released under the [MIT license](https://mit-license.org).
|
package/docs/API.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# node-turbo API documentation
|
|
2
2
|
|
|
3
|
-
Version 1.2.
|
|
3
|
+
Version 1.2.5
|
|
4
4
|
|
|
5
5
|
## Table of Contents
|
|
6
6
|
|
|
@@ -1050,4 +1050,4 @@ Gets thrown when invalid attributes are discovered.
|
|
|
1050
1050
|
|
|
1051
1051
|
***
|
|
1052
1052
|
|
|
1053
|
-
node-turbo is © 2024 by Walter Krivanek and released under the [MIT license](https://mit-license.org).
|
|
1053
|
+
node-turbo is © 2024-2025 by Walter Krivanek and released under the [MIT license](https://mit-license.org).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-turbo",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "A library for Node.js to assist with the server side of 37signals' Hotwire Turbo framework. It provides classes and functions for Web servers and also convenience functions for the frameworks Koa and Express as well as for WebSocket and SSE.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
|
@@ -59,28 +59,28 @@
|
|
|
59
59
|
"test:e2eserver": "node ./test/end2end/server-koa.js"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"debug": "^4.4.
|
|
62
|
+
"debug": "^4.4.1",
|
|
63
63
|
"is-plain-object": "^5.0.0",
|
|
64
64
|
"negotiator": "^1.0.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@hotwired/turbo": "^8.0.
|
|
68
|
-
"@koa/bodyparser": "^
|
|
69
|
-
"@playwright/test": "^1.
|
|
67
|
+
"@hotwired/turbo": "^8.0.13",
|
|
68
|
+
"@koa/bodyparser": "^6.0.0",
|
|
69
|
+
"@playwright/test": "^1.54.1",
|
|
70
70
|
"c8": "^10.1.3",
|
|
71
|
-
"chai": "^5.1
|
|
71
|
+
"chai": "^5.2.1",
|
|
72
72
|
"chai-spies": "^1.1.0",
|
|
73
73
|
"colorette": "^2.0.20",
|
|
74
|
-
"eventsource": "^
|
|
75
|
-
"express": "^
|
|
74
|
+
"eventsource": "^4.0.0",
|
|
75
|
+
"express": "^5.1.0",
|
|
76
76
|
"git-repo-info": "^2.1.1",
|
|
77
|
-
"koa": "^
|
|
77
|
+
"koa": "^3.0.1",
|
|
78
78
|
"koa-route": "^4.0.1",
|
|
79
79
|
"koa-static": "^5.0.0",
|
|
80
|
-
"mocha": "^11.
|
|
81
|
-
"node-mocks-http": "^1.
|
|
80
|
+
"mocha": "^11.7.1",
|
|
81
|
+
"node-mocks-http": "^1.17.2",
|
|
82
82
|
"nunjucks": "^3.2.4",
|
|
83
|
-
"supertest": "^7.
|
|
84
|
-
"ws": "^8.18.
|
|
83
|
+
"supertest": "^7.1.4",
|
|
84
|
+
"ws": "^8.18.3"
|
|
85
85
|
}
|
|
86
86
|
}
|