Commit ab7db8f

Peng Miao (mios) <mios426@gmail.com>
2022-04-07 09:08:06
fix(example): change serve port from 5000 to 3000 (#373)
1 parent 9589f19
Changed files (1)
examples/background-process.mjs
@@ -20,6 +20,6 @@ for await (let chunk of serve.stdout) {
   if (chunk.includes('Accepting connections')) break
 }
 
-await $`curl http://localhost:5000`
+await $`curl http://localhost:3000`
 
 serve.kill('SIGINT')