
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@shopify/polaris
Advanced tools
Polaris React is a component library designed to help developers create the best experience for merchants who use Shopify. Visit the Polaris style guide to learn more.
While we do offer a CSS-only version, we strongly recommend using the React versions of our components. It’s the version that we use at Shopify. It allows for rich, complex components like Tabs and Popovers, and will not have as many breaking changes as the CSS-only version.
Run the following command using npm:
npm install @shopify/polaris --save
If you prefer Yarn, use the following command instead:
yarn add @shopify/polaris
import '@shopify/polaris/build/esm/styles.css';
Otherwise include the CSS in your HTML. We suggest copying the latest styles file into your own project. This will need to be updated with future releases.
<link rel="stylesheet" href="styles.css" />
import enTranslations from '@shopify/polaris/locales/en.json';
import {AppProvider, Page, LegacyCard, Button} from '@shopify/polaris';
ReactDOM.render(
<AppProvider i18n={enTranslations}>
<Page title="Example app">
<LegacyCard sectioned>
<Button onClick={() => alert('Button clicked!')}>Example button</Button>
</LegacyCard>
</Page>
</AppProvider>,
document.querySelector('#app'),
);
<link rel="preconnect" href="https://cdn.shopify.com/" />
<link
rel="stylesheet"
href="https://cdn.shopify.com/static/fonts/inter/v4/styles.css"
/>
If React doesn’t make sense for your application, you can use a CSS-only version of our components. This includes all the styles you need for every component in the library, but you’ll be responsible for writing the correct markup and updating classes and DOM attributes in response to user events.
<link rel="stylesheet" href="styles.css" />
<button class="Polaris-Button">Example button</button>
We use Storybook to create a simple, hot-reloading playground for development on these components. You can edit the playground/Playground.tsx
file to import the components you are working on, and run yarn dev
in order to start the development server. Please do not commit your work on the playground so that it remains pristine for other developers to work on.
To test the changes on a mobile or virtual machine, you will need to open the source of the iFrame, to do this:
yarn dev
The /snapit
GitHub comment command in pull requests will publish a snapshot NPM package for testing. Read the release documentation for more information.
To start a server for manually viewing the visual regression testing examples, run yarn run dev
.
If you’re new to React, we recommend you start with the official React Getting Started documentation. As you read through the topics we suggest you follow along using their React Hello World CodePen example.
Additional resources:
We set out to make our components easy to use. Each of our components has a well-documented (and fully typed) public interface with strong, consistently-applied conventions. This way, developers don’t need to worry about the underlying implementation. Instead, they can focus on creating amazing merchant experiences.
We ensure that our components are made for everyone. They meet accessibility standards and are responsive to any screen or device. We also put a lot of effort into optimizing the performance of the components, so everyone can build inclusive experiences that work.
We make our components flexible enough to meet diverse needs. They present the information you pass in and give you smart callbacks when something has changed, but they don’t enforce any structure beyond that. No matter what type of experience you’re creating, you can use components as the building blocks of your product or feature.
Pull requests are welcome. See the contribution guidelines for more information.
FAQs
Shopify’s admin product component library
The npm package @shopify/polaris receives a total of 95,430 weekly downloads. As such, @shopify/polaris popularity was classified as popular.
We found that @shopify/polaris demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.