You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enter a word using _ and ? as needed for unknown characters. Using ? means to include letters that aren't already used (you can think of it as a "Wheel of Fortune" placeholder). Using _ will find words that contain any character (whether it's currently "revealed" or not).
70
70
<br />
@@ -133,15 +133,15 @@ export function search(pattern, dictionary) {
133
133
134
134
## Running a Deno Server
135
135
136
-
[Oak](https://deno.land/x/oak@v11.1.0) is a framework that lets you easily setup
137
-
a server in Deno (analogous to JavaScript's Express) and we'll be using it to
138
-
host our application. Our server will use our search function to populate our
139
-
HTML template with data and then return the customized HTML back to the viewer.
140
-
We can conveniently rely on the `/usr/share/dict/words` file as our dictionary
136
+
[Oak](https://jsr.io/@oak/oak) is a framework that lets you easily setup a
137
+
server in Deno (analogous to JavaScript's Express) and we'll be using it to host
138
+
our application. Our server will use our search function to populate our HTML
139
+
template with data and then return the customized HTML back to the viewer. We
140
+
can conveniently rely on the `/usr/share/dict/words` file as our dictionary
141
141
which is a standard file present on most Unix-like operating systems.
0 commit comments