Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
amos-persist
Advanced tools
Ther persitor plugin for amos
.
yarn add amos-persist
# or var npm
npm i -S amos-persist
Create the store
import { createStore } from 'amos';
import { withPersist } from 'amos-persist';
const store = createStore(
void 0,
withPersist({
engine: localStorage,
key: 'AMOS_STATE_SNAPSHOT',
}),
);
Hydrate the state with react
import { PersistGate } from 'amos-persist/react';
import { Provider } from 'amos-react';
import { useEffect, useState } from 'react';
const App = () => {
return (
<Provider store={store}>
<PersistGate loading={<Loading />}>
<MyAwesomeComponent />
</PersistGate>
</Provider>
);
};
withPersist(options)
Create persist enhancer to load and persist state automatically.
import { StoreEnhancer } from 'amos';
export declare function withPersist(options?: PersistOptions): StoreEnhancer;
PersistOptions
export declare interface PersistOptions {
/**
* The key of the state persisted in the engine
*/
key: string;
/**
* The engine of the persist, supports localStorage/sessionStorage
* in browser, and AsyncStorage in react-native.
*/
engine: StorageEngine;
/**
* determine the box should be persisted/hydrated or not.
*/
includes?: Array<Box | string> | ((box: Box) => boolean);
/**
* determine the box should be persisted/hydrated or not.
*
* Please note the `excludes` has priority over `includes`.
*/
excludes?: Array<Box | string> | ((box: Box) => boolean);
}
StorageEngine
export declare interface StorageEngine {
getItem(key: string): string | null | Promise<string | null>;
setItem(key: string): void | Promise<void>;
removeItem(key: string): void | Promise<void>;
}
hydrate()
hydrate
is a ActionFactory
to start hydrate action.
import { ActionFactory } from 'amos';
export declare const hydrate: ActionFactory<[], Promise<void>>;
hydrateStatusBox
The hydrate status, it is a Box
.
import { Box } from 'amos';
export declare const hydrateStatusBox: Box<HydrateStautsState>;
HydrateStautsState
export declare interface HydrateStautsState {
status: 'PENDING' | 'HYDRATING' | 'OK' | 'ERROR';
error: Error | null;
}
Please note the following API should be imported from amos-persist/react
rather than
amos-persist
.
PersistGate
A component to hydrate state automatically
import { FC } from 'react';
export declare const PersistGate: FC<PersistGateProps>;
PersistGateProps
import { ReactElement } from 'react';
export declare interface PersistGateProps {
loading?: ReactElement | null;
children?: ReactElement | null;
}
The MIT License (MIT)
Copyright (c) 2020 acrazing
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
FAQs
Hybrid amos with redux.
The npm package amos-persist receives a total of 1 weekly downloads. As such, amos-persist popularity was classified as not popular.
We found that amos-persist demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.