Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@amoutonbrady/etat
Advanced tools
Etat means "state" in french
Experimental global store for Solid focused on size and extensibility. This is essentially a global and safe way to have Solid's stores via Context API. If you want a more thorough solution, check out solid-pebble.
$ npm install @amoutonbrady/etat
$ pnpm install @amoutonbrady/etat
$ yarn install @amoutonbrady/etat
Add the global EtatProvider
// index.tsx
import { render } from 'solid-js/web'
import { EtatProvider } from '@amoutonbrady/etat';
import { App } from './app';
render(
() => (
<EtatProvider>
<App />
</EtatProvider>
),
document.getElementById('root'),
);
Define your stores globally
// store.tsx
import { createEtat } from '@amoutonbrady/etat`;
export const useAuth = createEtat('auth', {
token: '',
get isAuthenticated() {
return this.token.length > 0;
},
});
Use them as you please accross the whole app
// login.tsx
import { useAuth } from './store.tsx';
export function Login() {
const [_, setAuth] = useAuth();
function login() {
return setAuth('token', 'abcde');
}
return <button type="button" onClick={login}>Login!</button>
}
// app.tsx
import { Show } from 'solid-js';
import { Login } from './login.tsx';
import { useAuth } from './store.tsx';
export function App() {
const [auth] = useAuth();
return (
<Show
when={!auth.isAuthenticated}
fallback={<p>Your are logged in with the token {auth.token}</p>}
>
<Login />
</Show>
);
}
createEtat<T>(id: string, initialValue: T): () => [Store<T>, StoreSetterFunction<T>]
id
: This is a unique name that's being used to store the store value.initialValue
: This is the initial value of the store. It should ba an object. This will become a parameter of a createStore
function.EtatProvider
: this is the global provider. Without this, the stores won't work. I didn't add any check for this.FAQs
The tiniest global store possible for Solid
We found that @amoutonbrady/etat 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.