
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
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
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.