Skip to content

Commit cc90136

Browse files
committed
Link to MDN documentation on websockets
1 parent f7408d9 commit cc90136

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Now open the website at http://localhost:8080/hello
4949
5050
Server models
5151
-------------
52-
The four server models (*selectable via `-m <model>[,argument[,argument...]]` on the command line*) are:
52+
The server models (*selectable via `-m <model>[,argument[,argument...]]` on the command line*) are:
5353
5454
* **async** (*the default*): A single-threaded web server. Handlers can yield control back to the server to serve other clients during lengthy operations such as file up- and downloads.
5555
* **prefork**: Much like Apache, forks a given number of children to handle HTTP requests. Requires the `pcntl` extension. Use `prefork,children=<n>` to control the number of child processes.
@@ -254,6 +254,8 @@ class Ws extends Application {
254254
}
255255
```
256256
257+
See https://developer.mozilla.org/en-US/docs/Web/API/WebSocket
258+
257259
Logging
258260
-------
259261
By default, logging goes to standard output and will be visible in the console the `xp web` command was invoked from. It can be influenced via the command line as follows:

0 commit comments

Comments
 (0)