![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
@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;
// mutate is a function that changes your state in store
export const countSwear = createSwear('counter', defaultState, (mutate) => ({
decrease: () => {
// You can also access previous value like this
mutate((prev) => prev - 1);
}
}));
Use your swear via hook
// YourComponent.jsx
import React from 'react';
import { countSwear } from './countSwear';
export const YourComponent = () => {
// set and reset actions are here by default
const [count, { set, decrease, reset }] = useSwear(countSwear);
return (
<>
<span>{count}</span>
// Prev is a special action which can get callback with previous value
<Button onClick={() => set((prev) => prev + 1)}>Increase</Button>
<Button onClick={decrease}>Increase</Button>
<Button onClick={reset}>Reset</Button>
</>
);
}
Primitive mode
export const YourComponent = () => {
import React from 'react';
import { useSwearState } from '@swear-js/react';
// You can use a primitive swear without creation, with only default `set` and `reset` actions
const [count, { set, reset }] = useSwearState('counter', 0);
return (
<>
<span>{count}</span>
// Prev is a special action which can get callback with previous value
<Button onClick={() => set((prev) => prev + 1)}>Increase</Button>
<Button onClick={() => set((prev) => prev - 1)}>Decrease</Button>
<Button onClick={reset}>Reset</Button>
</>
);
}
FAQs
React support for swear-js
The npm package @swear-js/react receives a total of 2 weekly downloads. As such, @swear-js/react popularity was classified as not popular.
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
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.