
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@bigcommerce/big-design-patterns
Advanced tools
BigDesign React Patterns.
You can find documentation and examples on our docs page.
Add @bigcommerce/big-design
, @bigcommerce/big-design-patterns
and styled-components@5
to your project using npm
:
npm install @bigcommerce/big-design @bigcommerce/big-design-patterns styled-components@5
or with pnpm
:
pnpm add @bigcommerce/big-design @bigcommerce/big-design-patterns styled-components@5
Setup BigDesign as per the Quick start guide and then import any pattern, such as Page
and Header
, to use it anywhere in your app.
import { Panel } from '@bigcommerce/big-design';
import { AddIcon } from '@bigcommerce/big-design-icons';
import { Page, Header } from '@bigcommerce/big-design-patterns';
export default function App() {
const header = (
<Header
title="Products"
description="View and manage your products."
actions={[{ text: 'Add new', iconLeft: <AddIcon /> }]}
/>
);
return (
<Page header={header}>
<Panel header="Main content">
...
</Panel>
</Page>
);
}
FAQs
BigDesign React Patterns.
The npm package @bigcommerce/big-design-patterns receives a total of 109 weekly downloads. As such, @bigcommerce/big-design-patterns popularity was classified as not popular.
We found that @bigcommerce/big-design-patterns demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 12 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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.