Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@sunpietro/css-classnames
Advanced tools
A tiny helper to generate CSS classes based on provided conditions
A simple helper to generate CSS class names string based on provided conditions
First of all you need to install the package in your project by running:
npm install @sunpietro/css-classnames
or
yarn install @sunpietro/css-classnames
or by downloading files from this repository and including the file css-classnames.min.js
in your HTML code using script
tag:
<script async src="./js/css-classnames.min.js"></script>
Then if you installed it using either NPM or Yarn, you can start using it the following way:
import * as classnames from '@sunpietro/css-classnames';
const isFluid = true;
const items = [1, 2, 3];
const classNameString = classnames({
'container': true,
'container--fluid': isFluid,
'container--filled': items.length > 1,
'container--empty': false
});
console.log(classNamesString);
// The output: 'container container--fluid container--filled'
Otherwise, the script above will slightly change to:
const isFluid = true;
const items = [1, 2, 3];
const classNameString = window.classnames({
'container': true,
'container--fluid': isFluid,
'container--filled': items.length > 1,
'container--empty': false
});
console.log(classNamesString);
// The output: 'container container--fluid container--filled'
If you have any feedback, please create an issue in this repository
FAQs
A tiny helper to generate CSS classes based on provided conditions
The npm package @sunpietro/css-classnames receives a total of 0 weekly downloads. As such, @sunpietro/css-classnames popularity was classified as not popular.
We found that @sunpietro/css-classnames 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.