Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
babel-plugin-transform-goober
Advanced tools
A Babel plugin for goober, rewriting styled.div syntax to styled('div') calls
A Babel plugin for
🥜goober, rewriting styled.div
syntax to styled('div')
calls.
npm install --save babel-plugin-transform-goober
Edit .babelrc.json
{
"presets": [...],
"plugins": ["babel-plugin-transform-goober"]
}
And now you can create your components using styled.*
syntax:
import React from 'react';
import { styled } from 'goober';
const Button = styled.button`
margin: 0;
padding: 1rem;
font-size: 1rem;
background-color: tomato;
`;
If you want to use some other identifier than styled
you need to
tell the plugin about it. Set the configuration option "name"
to the
identifier name that want to use. For example, a .babelrc.json
file like this:
{
"presets": [...],
"plugins": [["babel-plugin-transform-goober", { "name" : "goober" }]]
}
allows you to use goober like this:
import React from 'react';
import { styled as goober } from 'goober';
const Button = goober.button`...`;
Setting the displayName
option to true
, will add richer component names and additional CSS classes to the component. This makes it easier to find your components in the devtools or in your HTML.
{
"presets": [...],
"plugins": [["babel-plugin-transform-goober", { "displayName" : true }]]
}
Example output:
// with displayName: false
<button className="go1231232"></button>
// with displayName: true
<button className="Sidebar__Button-go-1 go1231232"></button>
Minifiers have a hard time proving that a styled()
call has no side-effects and therefore won't remove them. By default this plugin will automatically insert #__PURE__
annotations to mark these functions as pure. You can opt out of this feature at the cost of bigger bundles by passing pure: false
.
{
"presets": [...],
"plugins": [["babel-plugin-transform-goober", { "pure" : false }]]
}
FAQs
A Babel plugin for goober, rewriting styled.div syntax to styled('div') calls
The npm package babel-plugin-transform-goober receives a total of 607 weekly downloads. As such, babel-plugin-transform-goober popularity was classified as not popular.
We found that babel-plugin-transform-goober 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.