where it says (under middlewares): ~~~js io.use( async ( ctx, next ) { console.log( 'Upstream' ) await next() console.log( 'Downstream' ) }) ~~~ it should be ~~~js ( ctx, next ) => { ~~~