
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
babel-plugin-jsxo
Advanced tools
Babel plugin that lets you create files with JSX only
Babel plugin that lets you write files with JSX only and converts them into components at compile time.
Sometimes I need the power of components but miss the simplicity of writing HTML files. (especially for presentation components).
This is a let the bots do the work solution.
You can create a file called about.js and put only the JSX you need, feels like HTML ❤️
<div>Hi, My name is Sid</div>
This will be transpiled to:
import React from 'react'
function About(props) {
return <div>Hi, my name is Sid</div>
}
export default About
That component name is picked up from the file name.
<div>Hi my name is {props.name}</div>
const name = "Sid";
<div>Hi my name is {name}</div>
import Input from './input';
<form>
<label for="name">Name</label>
<Input id="name"/>
</form>
my-input.js
<input type="text" {...props} />
form.js
import Input from './my-input';
<form>
<label for="name">Name</label>
<Input id="name"/>
</form>
Step 1. Install dependency
npm install babel-plugin-jsxo --dev
yarn add babel-plugin-jsxo --dev
Step 2. Drop it in your babel config as a plugin
{
"presets": ["@babel/preset-react"],
"plugins": ["jsxo"]
}
It might be possible to write a babel macro for this, I'm not sure 🤷
:star: this repo
MIT © siddharthkp
FAQs
JSX only files
The npm package babel-plugin-jsxo receives a total of 2 weekly downloads. As such, babel-plugin-jsxo popularity was classified as not popular.
We found that babel-plugin-jsxo 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.