yukukotani /
just-styled
A dead simple CSS-in-JS for React 19
52/100 healthLoading repository data…
kelsonpw / repository
A dead simple routing solution for browser extensions written in typescript with React Hooks. Context free.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A dead simple routing solution for browser extensions
npm install --save react-chrome-extension-router
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import {
goBack,
goTo,
popToTop,
Link,
Router,
getCurrent,
getComponentStack,
} from 'react-chrome-extension-router';
const Three = ({ message }: any) => (
<div onClick={() => popToTop()}>
<h1>{message}</h1>
<p>Click me to pop to the top</p>
</div>
);
const Two = ({ message }: any) => (
<div>
This is component Two. I was passed a message:
<p>{message}</p>
<button onClick={() => goBack()}>
Click me to go back to component One
</button>
<button onClick={() => goTo(Three, { message })}>
Click me to go to component Three!
</button>
</div>
);
const One = () => {
return (
<Link component={Two} props={{ message: 'I came from component one!' }}>
This is component One. Click me to route to component Two
</Link>
);
};
const App = () => {
useEffect(() => {
const { component, props } = getCurrent();
console.log(
component
? `There is a component on the stack! ${component} with ${props}`
: `The current stack is empty so Router's direct children will be rendered`
);
const components = getComponentStack();
console.log(`The stack has ${components.length} components on the stack`);
});
return (
<Router>
<One />
</Router>
);
};
ReactDOM.render(<App />, document.getElementById('root'));
MIT © kelsonpw
Selected from shared topics, language and repository description—not editorial ratings.
yukukotani /
A dead simple CSS-in-JS for React 19
52/100 healthjdjuan /
👻 A dead simple notification library for Angular 👻
42/100 healthshacthulu /
Dead simple client-side, private, web-based tool to flatten nested directories into a single one, maintaining directory context. Add local directories or pull directly from a GitHub repo. Perfect for Claude, ChatGPT and other systems that don't gracefully handle subdirectories and/or lose context.
A dead-simple React TypeScript boilerplate with SASS, Webpack 5.
58/100 healthlmammino /
A dead simple Solid.js starter template (using npm, ESLint, StandardJS, and TypeScript)
41/100 healthstuffmatic /
A dead simple, single function API for creating and starting a web audio worklet.
59/100 health