UNPKG
@graphql-yoga/template-node-ts
Version:
alpha (1.0.0-alpha-20230526141337-fe04a475)
latest (0.0.1-alpha-20230420085254-42ea5263)
rc (1.0.0-rc-20230526141732-fe04a475)
1.0.0-rc-20230526141732-fe04a475
1.0.0-alpha-20230526141337-fe04a475
0.0.1-rc-20230420115102-22dfa32a
0.0.1-rc-20230420103552-eb21b5db
0.0.1-rc-20230420102439-7a68ce07
0.0.1-rc-20230420085359-42ea5263
0.0.1-alpha-20230420115001-22dfa32a
0.0.1-alpha-20230420114148-703b306f
0.0.1-alpha-20230420103509-eb21b5db
0.0.1-alpha-20230420102533-7a68ce07
0.0.1-alpha-20230420085254-42ea5263
@graphql-yoga/template-node-ts
/
src
/
index.ts
8 lines
(6 loc)
•
212 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ createServer }
from
'node:http'
import
{ yoga }
from
'./yoga'
const
server =
createServer
(yoga) server.
listen
(
4000
,
() =>
{
console
.
log
(
`Listening on http://localhost:4000
${yoga.graphqlEndpoint}
`
) })