
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.
@getgrass/components
Advanced tools
Component library that is used by Grass applications
yarn add @chakra-ui/react @emotion/react @emotion/styled framer-motion react react-dom
yarn add @getgrass/components
theme and apply it on your chakra-ui providerimport theme from "@getgrass/components";
<ChakraProvider theme={theme}>{children}</ChakraProvider>;
DM Sans, you need to install this:yarn add @fontsource-variable/dm-san
2.a. Import the font on your _app.tsx file
import theme from "@getgrass/components"
import '@fontsource-variable/dm-sans' //supports weights 100-900
...
const App = ({ Component, pageProps }: AppProps) => {
return (
<>
<ChakraProvider theme={theme}>
<Component {...pageProps} />
</ChakraProvider>
</>
)
}
export default App
2.b. Extend the theme to a local theme
import { extendTheme } from "@chakra-ui/react";
import grassTheme from "@getgrass/components";
const theme = extendTheme(grassTheme, {
// insert local configurations here
});
export default theme;
.next folder to remove cached components and run it againFAQs
Component library used by grass applications
The npm package @getgrass/components receives a total of 2 weekly downloads. As such, @getgrass/components popularity was classified as not popular.
We found that @getgrass/components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.