
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Harō is a modern immutable DataStore built with ES6 features, which can be wired to an API for a
complete feedback loop. It is un-opinionated, and offers a plug'n'play solution to modeling, searching, & managing data
on the client, or server (in RAM). It is a partially persistent data structure, by maintaining version sets of records in versions
(MVCC).
haro-redis is a persistent storage adapter, providing 'auto saving' behavior, as well as the ability to
save()
, load()
, & unload()
the entire DataStore.
Require the adapter & register it with haro.register(key, fn)
. The key must match the store.adapters
key. The prefix
will be used if set, otherwise store.id
will be the prefix for localStorage items. Records will be have keys as prefix_key
, while
DataStores will be prefix
.
var haro = require('haro'),
store;
// Configure a store to utilize the adapter
store = haro(null, {
adapters: {
redis: {
prefix: "myData",
port: 6379,
host: "127.0.0.1",
config: {}
}
}
});
// Register the adapter
store.register('redis', require('haro-redis'));
// Ready to `load()`, `batch()` or `set()`!
Copyright (c) 2015 Jason Mulligan Licensed under the BSD-3 license
FAQs
Redis persistent storage adapter for Harō
We found that haro-redis 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
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.