node-turbo 1.2.6 → 1.2.7
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 +5 -5
- package/docs/API.md +1 -1
- package/docs/config.codekit3 +2923 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -55,9 +55,9 @@ node-turbo has been tested with 100% code coverage with the following engines/li
|
|
|
55
55
|
|
|
56
56
|
| Name | Version(s) |
|
|
57
57
|
| :--- | :--- |
|
|
58
|
-
| [Hotwire Turbo](https://turbo.hotwired.dev/) | 7.3.0 - 8.0.
|
|
58
|
+
| [Hotwire Turbo](https://turbo.hotwired.dev/) | 7.3.0 - 8.0.20 |
|
|
59
59
|
| [Node.js](https://nodejs.org/) | 16.6 - 22.20.0 |
|
|
60
|
-
| [Koa](https://koajs.com/) | 2.14.2 - 3.0.
|
|
60
|
+
| [Koa](https://koajs.com/) | 2.14.2 - 3.0.3 |
|
|
61
61
|
| [Express](https://expressjs.com/) | 4.18.2 - 5.1.0 |
|
|
62
62
|
| [ws](https://github.com/websockets/ws) | 8.15.1 - 8.18.3 |
|
|
63
63
|
|
|
@@ -529,7 +529,7 @@ const httpServer = http.createServer((req, res) => {
|
|
|
529
529
|
padding: 10px;
|
|
530
530
|
}
|
|
531
531
|
</style>
|
|
532
|
-
<script type="module" src="https://unpkg.com/@hotwired/turbo@8.0.
|
|
532
|
+
<script type="module" src="https://unpkg.com/@hotwired/turbo@8.0.20/dist/turbo.es2017-esm.js"></script>
|
|
533
533
|
<script>
|
|
534
534
|
var eventSource = new EventSource('/sse');
|
|
535
535
|
eventSource.onmessage = function(event) {
|
|
@@ -616,7 +616,7 @@ app.use(async (ctx, next) => {
|
|
|
616
616
|
padding: 10px;
|
|
617
617
|
}
|
|
618
618
|
</style>
|
|
619
|
-
<script type="module" src="https://unpkg.com/@hotwired/turbo@8.0.
|
|
619
|
+
<script type="module" src="https://unpkg.com/@hotwired/turbo@8.0.20/dist/turbo.es2017-esm.js"></script>
|
|
620
620
|
<script>
|
|
621
621
|
var eventSource = new EventSource('/sse');
|
|
622
622
|
eventSource.onmessage = function(event) {
|
|
@@ -693,7 +693,7 @@ app.get('/', async (req, res) => {
|
|
|
693
693
|
padding: 10px;
|
|
694
694
|
}
|
|
695
695
|
</style>
|
|
696
|
-
<script type="module" src="https://unpkg.com/@hotwired/turbo@8.0.
|
|
696
|
+
<script type="module" src="https://unpkg.com/@hotwired/turbo@8.0.20/dist/turbo.es2017-esm.js"></script>
|
|
697
697
|
<script>
|
|
698
698
|
var eventSource = new EventSource('/sse');
|
|
699
699
|
eventSource.onmessage = function(event) {
|