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.
@docusaurus/theme-common
Advanced tools
@docusaurus/theme-common is a package that provides common utilities and components for building themes in Docusaurus, a popular static site generator. It includes shared components, hooks, and utilities that can be used to create custom themes or extend existing ones.
useThemeConfig
The `useThemeConfig` hook allows you to access the theme configuration in your components. This is useful for customizing the appearance and behavior of your site based on the theme settings.
import { useThemeConfig } from '@docusaurus/theme-common';
const MyComponent = () => {
const themeConfig = useThemeConfig();
return <div>{JSON.stringify(themeConfig)}</div>;
};
useColorMode
The `useColorMode` hook provides access to the current color mode (light or dark) and a function to toggle it. This is useful for implementing dark mode support in your custom themes.
import { useColorMode } from '@docusaurus/theme-common';
const MyComponent = () => {
const { colorMode, setColorMode } = useColorMode();
return (
<div>
<p>Current color mode: {colorMode}</p>
<button onClick={() => setColorMode(colorMode === 'dark' ? 'light' : 'dark')}>Toggle Color Mode</button>
</div>
);
};
useWindowSize
The `useWindowSize` hook provides the current window size, which can be useful for responsive design and adapting your components based on the viewport dimensions.
import { useWindowSize } from '@docusaurus/theme-common';
const MyComponent = () => {
const windowSize = useWindowSize();
return <div>Window size: {windowSize.width} x {windowSize.height}</div>;
};
Gatsby themes allow you to share functionality across multiple Gatsby sites. Similar to @docusaurus/theme-common, Gatsby themes provide a way to encapsulate and reuse common components, hooks, and utilities. However, Gatsby themes are specific to the Gatsby ecosystem.
next-themes is a library for managing themes in Next.js applications. It provides similar functionality to @docusaurus/theme-common, such as theme configuration and color mode management, but is designed specifically for Next.js.
styled-components is a popular library for styling React applications using tagged template literals. While it doesn't provide theme-specific utilities like @docusaurus/theme-common, it offers powerful theming capabilities through its ThemeProvider component.
@docusaurus/theme-common
Common code for Docusaurus themes.
FAQs
Common code for Docusaurus themes.
The npm package @docusaurus/theme-common receives a total of 229,615 weekly downloads. As such, @docusaurus/theme-common popularity was classified as popular.
We found that @docusaurus/theme-common demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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’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.