
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This repository contains a collection of codemod scripts to be used with JSCodeshift.
npm install -g jscodeshiftnpm install js-codemodjscodeshift <codemod-script> <file>-d option for a dry-run and use -p to print the output
for comparisonuse-strict adds a top-level 'use strict' statement to JavaScript files
jscodeshift -t node_modules/js-codemod/transforms/use-strict.js <file>arrow-function transforms functions to arrow functions
jscodeshift -t node_modules/js-codemod/transforms/arrow-function.js <file>It will transform function() { }.bind(this) calls to () => {}. If the only
statement in the body is a ReturnStatement it will remove the curly braces.
If you are feeling lucky and you know that returning the value of
single-expression functions will not affect the behavior of your application you
can specify the --inline-single-expressions=true option and it will transform
function() { relay(); }.bind(this) to () => relay() instead of
() => { relay(); }.
Options to recast's printer can be provided
through the printOptions command line argument
jscodeshift -t transform.js <file> --printOptions='{"quote":"double"}'FAQs
Codemod scripts to transform code to next generation JS
The npm package js-codemod receives a total of 79 weekly downloads. As such, js-codemod popularity was classified as not popular.
We found that js-codemod 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.