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

strictModuleExceptionHandling missing in documentation of webpack 2 #796

Closed
aight8 opened this issue Feb 2, 2017 · 7 comments
Closed

strictModuleExceptionHandling missing in documentation of webpack 2 #796

aight8 opened this issue Feb 2, 2017 · 7 comments

Comments

@aight8
Copy link

aight8 commented Feb 2, 2017

Source in master:
https://github.com/webpack/webpack/blob/master/lib/MainTemplate.js#L69

Release info:
https://github.com/webpack/webpack/releases/tag/v2.1.0-beta.28

@TheLarkInn
Copy link
Member

Great low hanging fruit for anyone interested!

@TheLarkInn
Copy link
Member

Thanks for reporting!

@skipjack
Copy link
Collaborator

skipjack commented Feb 25, 2017

Didn't even know about this feature, that's awesome! Found a stackoverflow post that has a good explanation, maybe it could be a start for whoever wants to pick this up?

@sokra
Copy link
Member

sokra commented Feb 25, 2017

Note that the stackoverflow answer is wrong. strictModuleExceptionHandling is about how exceptions are handled in modules. If true module is removed form cache when exception occurs while module loading. see the PR introducing it.

@skipjack
Copy link
Collaborator

skipjack commented Feb 25, 2017

@sokra ah good to know. Then I guess they can reference your PR and the issue discussing it.

@aight8
Copy link
Author

aight8 commented Feb 27, 2017

Note that the stackoverflow answer is wrong. strictModuleExceptionHandling is about how exceptions are handled in modules. If true module is removed form cache when exception occurs while module loading. see the PR introducing it.

This is confusing. From which cache? An example / why someone should enable or disable this - would make more sense.

@simon04 simon04 reopened this Feb 27, 2017
@sokra
Copy link
Member

sokra commented Feb 27, 2017

from require.cache (the module instance cache at runtime)

// module.js
throw new Error("error");
// with strictModuleExceptionHandling = false
require("module") // <- throws
require("module") // <- doesn't throw
// with strictModuleExceptionHandling = true
require("module") // <- throws
require("module") // <- also throw

strictModuleExceptionHandling = true uses try finally in the runtime which makes it slow. The default behavior is the more performant one, assuming require is not used for exception twice.

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

No branches or pull requests

5 participants