
Research
/Security News
Laravel Lang Compromised with RCE Backdoor Across 700+ Versions
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.
gasket-plugin-tailwind
Advanced tools
This plugin adds Tailwind CSS support to your Gasket application.
npm i gasket-plugin-tailwind
Update your gasket file plugin configuration:
// gasket.js
+ import pluginTailwind from 'gasket-plugin-tailwind';
export default makeGasket({
plugins: [
+ pluginTailwind
]
});
You can configure Tailwind CSS options in your gasket.js file:
export default makeGasket({
plugins: [
pluginTailwindcss
],
tailwindConfig: {
// Your Tailwind CSS config options here
}
});
Executed before the Tailwind CSS configuration is finalized. It receives the initial Tailwind config and allows you to modify it.
export default {
name: 'my-plugin',
hooks: {
tailwindConfig(gasket, config) {
// Modify the Tailwind config
return {
...config,
// Your modifications here
};
}
}
};
FAQs
Adds Tailwind CSS support to your Gasket application
We found that gasket-plugin-tailwind 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
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.

Security News
Socket found a malicious postinstall hook across 700+ GitHub repos, including PHP packages on Packagist and Node.js project repositories.

Security News
Vibe coding at scale is reshaping how packages are created, contributed, and selected across the software supply chain