1
0

update migration

This commit is contained in:
Toby Schneider
2022-06-24 18:12:25 +02:00
committed by GitHub
parent 8931530ee9
commit 33901dbec2

View File

@@ -6,7 +6,7 @@ From `v1.x.x` to `v2.x.x`.
- [Import / Require](#import--require) - [Import / Require](#import--require)
- [Routes](#routes) - [Routes](#routes)
- [Fetch](#fetch) - [Fetch](#fetch--routerhandle)
## Import / Require ## Import / Require
@@ -32,72 +32,24 @@ Just add curly braces.
### Before ### Before
```javascript <a href="https://gist.github.com/tsndr/34e8544266ae15d51abd019d7c3d27ca" target="_blank"><img width="469" alt="Petrify 2022-06-24 at 5 57 01 PM" src="https://user-images.githubusercontent.com/2940127/175572731-a8729c1b-15e2-45ac-be80-7e8527c5502a.png"></a>
// Register global middleware
router.use((req, res, next) => {
res.headers.set('X-Global-Middlewares', 'true')
next()
})
// Simple get
router.get('/user', (req, res) => {
res.body = {
data: {
id: 1,
name: 'John Doe'
}
}
})
```
### After ### After
<pre> <a href="https://gist.github.com/tsndr/8db6e8dd55e348015c2ff8e93dd6aa31" target="_blank"><img width="469" alt="Petrify 2022-06-24 at 5 55 56 PM" src="https://user-images.githubusercontent.com/2940127/175572549-0eea8fc4-3d90-412a-89cc-d2f4569f1139.png"></a>
// Register global middleware
router.use((<span style="color:rgb(225, 75, 75);font-weight:bold;">{</span> req, res, next <span style="color:rgb(225, 75, 75);font-weight:bold;">}</span>) => {
res.headers.set('X-Global-Middlewares', 'true')
next()
})
// Simple get
router.get('/user', (<span style="color:rgb(225, 75, 75);font-weight:bold;">{</span> req, res <span style="color:rgb(225, 75, 75);font-weight:bold;">}</span>) => {
res.body = {
data: {
id: 1,
name: 'John Doe'
}
}
})
</pre>
## Fetch / `router.handle()` ## Fetch / `router.handle()`
<span style="color:rgb(225, 75, 75);font-weight:bold;">!</span> Be aware that with `v2.0.0` the parameters of `router.handle()` changed <span style="color:rgb(225, 75, 75);font-weight:bold;">!</span> ❗️ Be aware that with `v2.0.0` the parameters of `router.handle()` changed ❗️
### Before ### Before
`router.handle(request, extend = {})` <a href="https://gist.github.com/tsndr/12b0f800269760c597646c90a562ef88" target="_blank"><img width="469" alt="Petrify 2022-06-24 at 5 58 43 PM" src="https://user-images.githubusercontent.com/2940127/175572993-fb4681c2-eece-4c92-88e8-1c2f57644769.png"></a>
```javascript
// Listen Cloudflare Workers Fetch Event
addEventListener('fetch', event => {
event.respondWith(router.handle(event.request))
})
```
### After ### After
`router.handle(env, request, extend = {})` <a href="https://gist.github.com/tsndr/30902b01b134e2a58cf3a53648dd3e47" target="_blank"><img width="393" alt="Petrify 2022-06-24 at 5 59 22 PM" src="https://user-images.githubusercontent.com/2940127/175573110-b7dfcfb2-855d-4529-a957-6f8b9ec439f3.png"></a>
<pre>
// Listen Cloudflare Workers Fetch Event
export default {
async fetch(request, env, ctx) {
return router.handle(<span style="color:rgb(225, 75, 75);font-weight:bold;">env</span>, request)
}
}
</pre>