You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use node modules only when needed (don't require() on top files like app.js) to speed up the loading, it has been started but can be extended since node-modules are cached, so using "require()" everytime instead of a variable can work flawlessly, the module will only be loaded the first time require() is triggered.
The text was updated successfully, but these errors were encountered:
Use node modules only when needed (don't
require()
on top files like app.js) to speed up the loading, it has been started but can be extended since node-modules are cached, so using "require()" everytime instead of a variable can work flawlessly, the module will only be loaded the first time require() is triggered.The text was updated successfully, but these errors were encountered: