
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
datas-store
Advanced tools
Datas is a fast, reliable, object based data store.
Datas is meant to be a data store that integrates quickly and easily with large projects. It does that by being Object based. This allows you to choose how you control your data.
npm install datas-store
To create a store, you need to extend DatasStore:
import DatasStore from 'datas-store';
class MyStore extends DatasStore {
constructor() {
super(0); // here you define your initial state
}
public addOne() {
this.setState(this.getState() + 1);
}
}
let store = new MyStore();
store.watch(state => console.log('My number is now', state));
store.addOne(); // => "My number is now 1"
store.addOne(); // => "My number is now 2"
store.addOne(); // => "My number is now 3"
store.addOne(); // => "My number is now 4"
// ...
This is only a simple example of a data store however. You can also use Objects, Arrays, or any other JavaScript type.
As of v2.0.0, everything is immutable. For an example of using immutability in a project, check the todo example.
There are several examples inside of the examples directory. Install webpack-dev-server globally, then run webpack-dev-server
inside of a directory to run the example.
Datas is currently less than 800 bytes minified (362 bytes gzipped.)
Performance should be better than alternatives, however due to built in immutibility this may not be the case with large states.
Unlike Redux which calls all of the reducers when an action is called, in Datas you just call the method directly.
Flux and Redux both use a switch statement to check action type. You have the option of doing this by accepting a string as a parameter.
This is licensed under the MIT license.
FAQs
Datas is a fast, reliable, object based data store.
We found that datas-store 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.