1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/test/integration/ondemand
JJ Kasper af07611a63 Implement websockets based on-demand-entries ping (#4508)
Fixes #4495

Here's my approach for replacing the XHR on-demand-entries pinger #1364 #4495. I'm not sure if this is the way everyone wants to accomplish this since I saw mention of using a separate server and port for the dynamic entries websocket, but thought this would be a fairly clean solution since it doesn't need that.

With this method the only change when using a custom server is you have to listen for the upgrade event and pass it to next.getRequestHandler(). Example: 
```
const server = app.listen(port)
const handleRequest = next.getRequestHandler()

if(dev) {
  server.on('upgrade', handleRequest)
}
```
2018-12-14 12:25:59 +01:00
..
components Fix dynamic import page navigation (#4842) 2018-07-26 12:38:45 +02:00
pages Even more reliable error-recovery tests (#5284) 2018-09-26 01:04:15 +02:00
test Implement websockets based on-demand-entries ping (#4508) 2018-12-14 12:25:59 +01:00
next.config.js Implement "on demand entries" (#1111) 2017-02-26 11:45:16 -08:00