
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
A highly customizable React component library for displaying syntax-highlighted code snippets. Supports multiple languages and themes, making it ideal for documentation, blogs, or educational platforms.
c063 is a syntax highlighting component built with React and TypeScript. It offers flexible theming and a modular architecture that makes it easy for developers to embed code blocks into their applications.
npm install c063
import { CodeBlock } from "c063";
const tokens = [
[
{ type: "keyword1", children: "const" },
{ type: "default", children: " " },
{ type: "variable", children: "x" },
{ type: "default", children: " = " },
{ type: "number", children: "42" },
],
];
<CodeBlock tokenLines={tokens} theme="github-light" />;
src
├── components/ # Component files
│ ├── CodeBlock.tsx # Code block container
│ ├── CodeLine.tsx # Single line component
│ ├── CodeToken.tsx # Individual token component
├── libs/ # Theme and configuration
│ └── themes/ # Color themes
├── types/ # Type definitions
├── utils/ # Utility functions and parsers
└── index.ts # Module export entry
CodeBlock<T>interface CodeBlockProps<T extends React.ElementType> {
tokenLines: CodeTokenProps<T>[][];
showLineNumbers?: boolean; // Default true
lineNumberStyle?: React.CSSProperties;
theme?: CodeTheme; // e.g. "github-dark"
}
CodeLine<T>interface CodeLineProps<T extends React.ElementType> {
tokens: CodeTokenProps<T>[];
theme?: CodeTheme;
}
CodeToken<T>interface CodeTokenProps<T extends React.ElementType> {
type?: CodeTokenType;
theme?: CodeTheme;
children: React.ReactNode;
as?: T; // Custom rendering tag
}
c063.<type>(): Quickly create tokens, e.g., c063.keyword1("const").whiteSpace(count): Insert a specific number of whitespace tokens.All contributions are welcome, including but not limited to:
Before submitting a PR, please fork the repository and create a new branch for your changes.
This project is licensed under the MIT license.
Repository:
FAQs
A React component for displaying code snippets with syntax highlighting.
The npm package c063 receives a total of 3 weekly downloads. As such, c063 popularity was classified as not popular.
We found that c063 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.