Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
babel-plugin-vdux-transform
Advanced tools
Babel plugin to instrument vdux components with custom transforms
Forked from the excellent babel-plugin-react-transform. Does the same thing but works with components that aren't passed to any sort of constructor (e.g. React.createClass
) so that it can be used with vdux and other things like deku.
This plugin doesn't do anything on its own, it just enables you to write transforms for your components. You apply those transforms like this:
{
"plugins": [
["vdux-transform", {
"transforms": [{
// can be an NPM module name or a local path
"transform": "vdux-transform-hmr"
}, {
// can be an NPM module name or a local path
"transform": "./src/my-custom-transform"
}]
}]
]
}
A trivial transform to add displayName's to components looks like this:
function transform (opts) {
return (component) => {
const parts = opts.filename.split('/')
const file = parts[parts.length - 1]
const name = file.slice(0, file.indexOf('.'))
const displayName = name[0].toUpperCase() + name.slice(1)
return {
displayName,
...component,
}
}
}
You may also specify an hoc
config option which allows you to specify which functions return higher-order components (an example would be vdux-summon):
{
"plugins": [
["vdux-transform", {
"hoc": ["summon"],
"transforms": [{
"transform": "vdux-transform-hmr"
}]
}]
]
}
FAQs
Babel plugin to instrument vdux components with custom transforms
We found that babel-plugin-vdux-transform 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.