Skip to content
New issue

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

How to destroy/close server ? #86

Open
promentol opened this issue Sep 29, 2023 · 1 comment
Open

How to destroy/close server ? #86

promentol opened this issue Sep 29, 2023 · 1 comment

Comments

@promentol
Copy link

promentol commented Sep 29, 2023

Express.js servers have close method

How to destroy http server created by serve function ?

serve({
        fetch: honoServer.fetch,
        port: 3001,
      })
@mgcrea
Copy link

mgcrea commented Oct 18, 2023

You can call server.close():

  const server = serve(options, ({ address, port }) => {
    console.log(`Server listening at http://${address}:${port}`);
  });

  process.on("SIGINT", () => {
    console.log("Ctrl-C was pressed");
    server.close();
  });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants