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.
@swear-js/react
Advanced tools
React package of SwearJS state manager
Demo application is runnable via npx:
$ npx swear-demo-react
Don't forget to remove created project directory after
$ npm install @swear-js/core @swear-js/react
or in case you are using Yarn:
$ yarn add @swear-js/core @swear-js/react
Initialize your store and a provider.
// App.jsx
import { createStore } from "@swear-js/core";
import { swearContext } from "@swear-js/react";
function App() {
const store = createStore({ onPatch: swearLogger });
return (
<swearContext.Provider value={store}>
// ...
</swearContext.Provider>
);
}
export default App;
Then you have to create a swear
// countSwear.ts
import { createSwear } from '@swear-js/react';
const defaultState = 0;
export const countSwear = createSwear('counter', defaultState, {
set: (mutate) => (payload: number) => {
mutate(payload);
},
clear: (mutate) => () => {
mutate(defaultState);
},
});
Use your swear via hook
// YourComponent.jsx
import React from 'react';
import { countSwear } from './countSwear';
export const YourComponent = () => {
const [count, { set: setCount, clear: clearCount }] = useSwear(countSwear);
return (
<>
<span>{count}</span>
<Button onClick={() => setCount(count + 1)}>Increase</Button>
<Button onClick={clearCount}>Reset</Button>
</>
);
}
FAQs
React support for swear-js
We found that @swear-js/react 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.