We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have a demo to implement this in fastify framework?
The text was updated successfully, but these errors were encountered:
Hi! You mean, with the fastify-socket.io plugin?
Sorry, something went wrong.
Yes for use socket.io are ok but not integrate the ADMIN UI control page.
this is an example implementation
import fastify from "fastify"; import fastifyIO from "fastify-socket.io"; const server = fastify(); server.register(fastifyIO, { cors: { origin: ["https://admin.socket.io"], credentials: true, }, }); server.ready().then(() => { instrument(server.io, { auth: false, development: true }); }); server.listen({ port: 3000 });
and go to https://admin.socket.io/ write on server url http://localhost:3000 and click connect
No branches or pull requests
Have a demo to implement this in fastify framework?
The text was updated successfully, but these errors were encountered: