We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9093389 commit f0cb232Copy full SHA for f0cb232
README.md
@@ -158,6 +158,21 @@ app.listen({ port: 4000 });
158
console.log('Listening to port 4000');
159
```
160
161
+##### With [`uWebSockets.js`](https://github.com/uNetworking/uWebSockets.js)
162
+
163
+```js
164
+import uWS from 'uWebSockets.js'; // yarn add uWebSockets.js@uNetworking/uWebSockets.js#<version>
165
+import { createHandler } from 'graphql-http/lib/use/uWebSockets';
166
+import { schema } from './previous-step';
167
168
+uWS
169
+ .App()
170
+ .any('/graphql', createHandler({ schema }))
171
+ .listen(4000, () => {
172
+ console.log('Listening to port 4000');
173
+ });
174
+```
175
176
##### With [`Deno`](https://deno.land/)
177
178
```ts
0 commit comments