
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.
chainedcss-rn
Advanced tools
ChainedCSS-RN Minimalistic Method Chaining CSS - TailwindStyle for React Native
Minimalistic Method Chaining CSS - TailwindStyle for React Native
github
npm
// for npm
npm i chainedcss-rn
// for yarn
yarn add chainedcss-rn
// for pnpm
pnpm add chainedcss-rn
At the top of every component
import _ from 'chainedcss-rn';
✨ You already know how to use it - for the majority of basic styles ChainedCSS uses identical styling to Tailwind, to make sure users don't have to relearn everything again.
✨ The power of objects and methods - utilise the full power of js using objects and methods. Flexibility and Programability, far beyond css.
✨ Clean minimalistic look - ChainedCSS avoids all uneccesary symbols and extra code to bring css in js as close as possible to Tailwind css. CSS is too long, we've come to realise this after Tailwind became so popular. JSS, CSS in JS is even worse. ChainedCSS fixes this.
✨ Custom functions - Tailwind only has pre-determined classes. Is that a bug or a feature? If you thinks that is a feature then use ChainedCSS styles which are basically the same, however if the user wants to, she can customize many of them, because they are functions and can receive an input.
✨ Use Tailwind-ish styles - for the majority of basic styles ChainedCSS uses identical styling to Tailwind, to make sure users don't have to relearn everything again.
import _ from 'chainedcss-rn';
const Component = () => {
return (
<View style={_.h(10).s}>Hello</View>
<View
style={_.h(10).bg('red').justify('center').s}
>
Hello
</View>
);
};
export default Component;
✨ Use numbers and variables in the styles functions or just add the value to the name like in tailwind
const heightX = 4;
return (
<View style={_.h(heightX).s}>Hello</View>
);
FAQs
ChainedCSS-RN Minimalistic Method Chaining CSS - TailwindStyle for React Native
We found that chainedcss-rn demonstrated a not healthy version release cadence and project activity because the last version was released 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.