Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.