Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
auto-strict
Advanced tools
Makes all local modules (that is, everything except the stuff in node_modules/) in Node get loaded
in strict mode. To add 'use strict' to all modules including the ones in node_modules, take a look
at https://github.com/isaacs/use-strict (which was my inspiration for this module). Or use
node --use_strict
to get the same effect.
In your entrypoint file, put this at the very top:
'use strict';
require('auto-strict')
// That's it, now all your modules included after this line is strict forever.
Yeah, that's right, you still have to manually put 'use strict';
in your entrypoint file, because
at that point, we haven't yet had a chance to patch the module compilation. All modules required
after the require('auto-strict')
line will have it.
The implementation works by patching Node's internal module.prototype._compile
function. The only
thing it does, is check whether the file is not under the node_modules
folder, and then prefixes
the file content with 'use strict';
FAQs
Add 'use strict'; to all code not in node_modules
We found that auto-strict demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.