Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@getcircuit/colors
Advanced tools
@getcircuit/colors
yarn add @getcircuit/colors
Exports two values:
ColorList
- Ordered list of color preset namesColorMap
- Map of color presetsAnd some utility methods:
getPresetByName
- Gets the color preset by a given name.getOrderedPresetName
- Gets the color preset name by a given ordered number.getOrderedPreset
- Gets the color preset by a given ordered number.import { getOrderedPreset } from '@getcircuit/colors/routes'
const firstColour = getOrderedPreset(0)
// {
// active: '#476FF1',
// inactive: '#CFD9FC',
// text: '#2450E1',
// }
console.log(firstColour)
An object of colors with objects with their colour types and HEX.
export const ColorMap = {
azure: {
name: 'azure'
index: 3,
active: '#40B2F9',
inactive: '#BFE2F8',
text: '#1994E1',
},
blue: {
name: 'blue',
index: 10,
active: '#3F90FA',
inactive: '#D0E3FB',
text: '#0D73F8',
},
// ...
An array with the order of routes colors to be used.
export const ColorList = [
'marine',
'turqoise',
'purple',
// ...
FAQs
## Install
We found that @getcircuit/colors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 19 open source maintainers 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 found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.