Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@harlem/extension-storage
Advanced tools
The storage extension adds the ability to sync store state to/from localStorage
or sessionStorage
.
Follow the steps below to get started using the storage extension.
Before installing this extension make sure you have installed harlem
.
yarn add @harlem/extension-storage
# or
npm install @harlem/extension-storage
To get started simply register this extension with the store you wish to extend.
import storageExtension from '@harlem/extension-storage';
import {
createStore
} from 'harlem';
const STATE = {
firstName: 'Jane',
lastName: 'Smith'
};
const {
state,
getter,
mutation,
startStorageSync,
stopStorageSync,
clearStorage,
restoreStorage
} = createStore('example', STATE, {
extensions: [
storageExtension({
type: 'local',
prefix: 'harlem',
sync: true,
restore: false,
include: '*',
exclude: [],
branch: state => state.firstName,
serialiser: state => JSON.stringify(state),
parser: value => JSON.parse(value)
})
]
});
The storage extension adds several new methods to the store instance (highlighted above).
The storage extension method accepts an options object with the following properties:
string
- The type of storage interface to use. Acceptable values are local
or session
. Default value is local
.string
- The prefix to use on the storage key. The storage value will be in the form ${prefix}:${storeName}
. Default value is harlem
.boolean
- Whether to automatically sync changes from the storage interface back to the store. Default value is true
.boolean
- Whether to automatically restore the state back from the storage on load. Default is false
.(string | regex)[]
- A matcher to specify which mutations trigger a storage sync event(string | regex)[]
- A matcher to specify mutation names to exclude from triggering a storage sync event.state => any
- A function to a specific sub-branch of state to store as opposed to the whole state tree.unknown => string
- A function to serialise the store to string. The default behaviour is JSON.stringify
.string => unknown
- A function to serialise the storage string to a state structure. The default behaviour is JSON.parse
.The default behaviour for serialising/parsing only supports JSON-compatible types. For non-JSON-compatible types please specify a custom serialiser/parser.
See the MDN documentation on JSON serialisation for more information: MDN docs
The startStorageSync
and stopStorageSync
methods can be used to start or stop sync behaviour.
Use the clearStorage
method to clear all stored data relating to this store.
Use the restoreStorage
method to manually restore the state from storage.
FAQs
The official storage extension for Harlem
The npm package @harlem/extension-storage receives a total of 3 weekly downloads. As such, @harlem/extension-storage popularity was classified as not popular.
We found that @harlem/extension-storage 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.