
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Primary Open Icon package with generated catalog helpers and icon access APIs.
open-icon is the main package for the Open Icon catalog.
It gives you:
Icons lookup for app codeloadIcon() from open-icon/runtime for per-icon lazy loadinggetIcon() from open-icon or open-icon/static for synchronous SVG accessopen-icon/iconsnpm install open-icon
import { Icons, getIcon, getOpenIconImportPath } from 'open-icon';
import { loadIcon } from 'open-icon/runtime';
const iconName = Icons.UI_ADD_M;
const iconSvg = getIcon(iconName);
const lazyIconSvg = await loadIcon(iconName);
const importPath = getOpenIconImportPath('wayfinding/check-in');
open-icon and open-icon/static include synchronous getIcon() access. Use them for static rendering, server rendering, or tooling.open-icon/runtime keeps icon markup behind per-icon loaders. Use it when wrappers or apps should avoid pulling the full icon map into the default client path.import { IconAddM, IconUiKey } from 'open-icon/icons';
console.log(IconAddM);
console.log(IconUiKey);
open-icon is the main catalog/helper packageopen-icon/runtime is the lazy runtime entrypointopen-icon/static is the synchronous full-catalog entrypointopen-icon-svg ships the raw SVG filesopen-icon-transform applies the transform pipeline in scripts and toolingvite-plugin-open-icon applies the transform pipeline during Vite importsFAQs
Primary Open Icon package with generated catalog helpers and icon access APIs.
The npm package open-icon receives a total of 285 weekly downloads. As such, open-icon popularity was classified as not popular.
We found that open-icon demonstrated a healthy version release cadence and project activity because the last version was released less than 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.