
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
finallyreact
Advanced tools
A simple and customizable design library for React, including a full set of component, style, and utility elements.
FinallyReact is a React design library created with flexibility and usability in mind.
You can find examples of all component, design, and utility elements on the FinallyReact website (built entirely with FinallyReact).
npm install finallyreactimport 'finallyreact/main.css'import { Column, Row, Card } from 'finallyreact'To set global settings, create a finally.config.js file in the root of your project.
Below are the available options, with default values:
export default {
breakpoints: {
xs: 600,
sm: 900,
md: 1200,
lg: 1600,
xl: 2000,
xxl: 2400
},
simple: false
};
To reduce the size of the CSS bundle, you can use PostCSS and PurgeCSS.
You can find an example postcss.config.js file in the examples folder.
Note: Ensure your purgecss content includes node_modules/finallyreact/index.js. If your app is in a monorepo, use your path to node_module, for example: ../../node_modules/finallyreact/index.js
Copyright © 2023-current machinellama
Available under the MIT license, which means anyone can use FinallyReact for free, for any purpose. Read the full license text in the LICENSE.txt file in the repo.
FinallyReact is not affiliated with nor endorsed by the ReactJS team or Meta Platforms, Inc.
If you'd like to run FinallyReact locally on your computer to make or test changes:
(older versions of Node might work but are not tested)
npm installnpm run build from the root to create a lib folder with compiled filesnpm run link inside the lib folder created and npm link finallyreact in the external appnpm run build:watch from the root to build and watch for changes while developing (make sure to run npm run build at least once first)npm run testFor better stack traces while developing locally: change "mode" in webpack.config.js to "development"
The build size of my project is too large after including FinallyReact styles
Importing finallyreact/main.css in my NextJS _app.js file isn't applying styles correctly
@import '~finallyreact/main.css';Why are most component styles written in TS files instead of directly in SASS?
simple prop for any component to remove all default styles, making it even easier to add your own styles.FAQs
A simple and customizable design library for React, including a full set of component, style, and utility elements.
We found that finallyreact 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.