
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
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 741 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.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.