
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
The best use-hook ever made.
npm i use-shit
import { useShit } from 'use-shit';
const REAL_SHIT = [1, 2, 3, 4];
const [shit] = useShit(REAL_SHIT); // shit === REAL_SHIT
import { useShit } from 'use-shit';
const REAL_SHIT = [1, 2, 3, 4];
function Component() {
- const shit = REAL_SHIT; // ❌ It's ugly
+ const [shit] = useShit(REAL_SHIT); // ✅ Nice and smooth
return (
<>
<p>Thanks god, My code is beautiful!</p>
<ul>
{ shit.map((slice) => (
<li key={slice}>{slice}</li>
)) }
</ul>
</>
);
}
import { useShit } from 'use-shit';
function Component() {
const [num1, setNum1] = useState(0);
const [num2, setNum2] = useState(0);
- const sum = num1 + num2; // ❌ It doesn't look good
- const sum = useMemo(() => num1 + num2, [num1, num2]); // ❌ Unnessesury use of cache
+ const [sum] = useShit(num1 + num2); // ✅ Nice and feels right
return (
<>
<input type="number" onChange={(e) => setNum1(e.target.valueAsNumber)} />
<input type="number" onChange={(e) => setNum2(e.target.valueAsNumber)} />
<b>{sum}</b>
</>
);
}
FAQs
The best use-hook ever made.
We found that use-shit 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.