Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.