
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@babel/plugin-proposal-do-expressions
Advanced tools
@babel/plugin-proposal-do-expressions is a Babel plugin that allows you to use 'do' expressions in your JavaScript code. 'Do' expressions enable you to use blocks of code as expressions, which can be particularly useful for complex conditional logic or for creating more readable code.
Basic Do Expression
This feature allows you to use a block of code as an expression. In this example, the 'do' expression evaluates the conditional logic and assigns the result to the 'result' variable.
const result = do {
if (x > 10) {
'greater';
} else {
'lesser';
}
};
Do Expression with Multiple Statements
This feature allows you to include multiple statements within a 'do' expression. Here, a temporary variable 'temp' is calculated and used within the conditional logic.
const result = do {
let temp = x * 2;
if (temp > 10) {
'greater';
} else {
'lesser';
}
};
Do Expression with Function Call
This feature demonstrates how you can include function calls within a 'do' expression. The 'calculate' function is defined and called within the 'do' block, and its result is assigned to the 'result' variable.
const result = do {
function calculate(y) {
return y * 2;
}
calculate(x);
};
This Babel plugin allows you to inline environment variables into your code. While it doesn't provide 'do' expressions, it offers a way to manage environment-specific configurations, which can be useful for conditional logic based on environment variables.
babel-plugin-macros allows you to create custom compile-time transformations. While it doesn't directly offer 'do' expressions, it provides a way to create custom syntax and transformations, which can be used to achieve similar goals.
Compile do expressions to ES5
See our website @babel/plugin-proposal-do-expressions for more information.
Using npm:
npm install --save-dev @babel/plugin-proposal-do-expressions
or using yarn:
yarn add @babel/plugin-proposal-do-expressions --dev
FAQs
Compile do expressions to ES5
We found that @babel/plugin-proposal-do-expressions demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.