Reputation: 11
I'm using webpack for my React projects local development. When I run npm start
it throws this error:
throw er; // Unhandled 'error' event
Error: addMembership ENODEV
But when I go online the error is gone and it works fine.
Any help is appreciated because I will be working offline for a long time.
Upvotes: 1
Views: 1259
Reputation: 979
It happens because webpack-dev-server uses bonjour even if it is not needed. here is discussion: https://github.com/webpack/webpack-dev-server/issues/979
Upvotes: 1