Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@greenwood/plugin-babel
Advanced tools
A Greenwood plugin for using Babel and applying it to your JavaScript.
A Greenwood plugin for using Babel and applying it to your JavaScript. For more information and complete docs on Greenwood, please visit our website.
This package assumes you already have
@greenwood/cli
installed.
You can use your favorite JavaScript package manager to install this package.
# npm
$ npm i -D @greenwood/plugin-babel
# yarn
$ yarn add @greenwood/plugin-babel --dev
# pnpm
$ pnpm add -D @greenwood/plugin-babel
Add this plugin to your greenwood.config.js:
import { greenwoodPluginBabel } from '@greenwood/plugin-babel';
export default {
// ...
plugins: [
greenwoodPluginBabel()
]
}
Create a babel.config.cjs in the root of your project with your own custom plugins / settings that you've installed and want to use:
module.exports = {
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-private-methods'
]
};
This will then process your JavaScript with Babel using the configured plugins and settings you provide.
For now Babel configuration needs to be in CJS. Will we be adding ESM support soon!
This plugin provides a default babel.config.js that includes support for @babel/preset-env using browserslist with reasonable default configs for each.
If you would like to use it, either standalone or with your own custom babel.config.js, you will need to take the following extra steps:
@babel/runtime
and regenerator-runtime
as dependencies to your projectgreenwoodPluginBabel
to your greenwood.config.js, enable the extendConfig
option
import { greenwoodPluginBabel } from '@greenwood/plugin-babel';
export default {
// ...
plugins: [
greenwoodPluginBabel({
extendConfig: true
})
]
};
If you have a custom babel.config.js, this option will merge its own presets
and plugins
in the array ahead of your own (if you have them).
FAQs
A Greenwood plugin for using Babel and applying it to your JavaScript.
We found that @greenwood/plugin-babel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.