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

feat: expose dev server instance for onBeforeStartDevServer hook #4559

Merged
merged 6 commits into from
Feb 14, 2025

Conversation

chenjiahan
Copy link
Member

@chenjiahan chenjiahan commented Feb 14, 2025

Summary

Expose the dev server instance for the onBeforeStartDevServer hook, this makes it easier for the Rsbuild plugins to add a custom middleware.

const myPlugin = {
  setup(api) {
    api.onBeforeStartDevServer(({ server, environments }) => {
      console.log('before starting dev server.');
      console.log('the server is ', server);
      console.log('the environments contexts are: ', environments);
    });
  },
};
const myPlugin = {
  name: 'test-plugin',
  setup(api) {
    api.onBeforeStartDevServer({ server }) => {
      server.middlewares.use((_req, _res, next) => {
        count++;
        next();
      });
    });
  },
};

Checklist

  • Tests updated (or not required).
  • Documentation updated (or not required).

Sorry, something went wrong.

@chenjiahan chenjiahan requested a review from 9aoy February 14, 2025 08:09
Copy link

netlify bot commented Feb 14, 2025

Deploy Preview for rsbuild failed. Why did it fail? →

Name Link
🔨 Latest commit bcda206
🔍 Latest deploy log https://app.netlify.com/sites/rsbuild/deploys/67aefb7eda1cb900088ee48c

@chenjiahan chenjiahan changed the title Expose server api 0214 @chenjiahan feat: expose dev server instance for onBeforeStartDevServer hook Feb 14, 2025
@chenjiahan chenjiahan changed the title @chenjiahan feat: expose dev server instance for onBeforeStartDevServer hook feat: expose dev server instance for onBeforeStartDevServer hook Feb 14, 2025
fix
@chenjiahan chenjiahan merged commit 83ec5cc into main Feb 14, 2025
11 of 14 checks passed
@chenjiahan chenjiahan deleted the expose_server_api_0214 branch February 14, 2025 08:48
@9aoy 9aoy mentioned this pull request Feb 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants