
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
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.
The npm package datas-store receives a total of 4 weekly downloads. As such, datas-store popularity was classified as not popular.
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.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.