Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
gun-mongo-key
Advanced tools
A key:value MongoDB adapter for GunJS.
gun-mongo-key
stores the each graph node's key:value (along with some metadata) in a separate document. This provides some major advantages in two areas: streaming large nodes (so that memory isn't overwhelmed) and making updates faster. The disadvantage is that creating new nodes (especially) nodes with lots of properties will be less efficient.
If the following are true, then gun-mongo-key
could be right for your application:
users
node with millions of children will be streamed to Gun rather than transferred in the entirety).Contrast this with gun-mongo
which has an advantages for creating nodes. This advantage dwindles at the point where a node becomes so large that it threatens to overwhelm memory.
yarn add gun-mongo-key
or npm install gun-mongo-key
.
const Gun = require('gun');
// Must be added after Gun but before instantiating Gun
require('gun-mongo-key');
// Instantiate Gun
const gun = new Gun({
file: false,
server: httpServer,
// The following are defaults. You can supply `true` to use all defaults
mongo: {
host: 'localhost',
port: '27017',
database: 'gun',
collection: 'gun_mongo_key',
query: ''
}
});
In some preliminary tests (that should not be taken for official benchmarks), gun-mongo-key
can write ~10k key:values/sec, where each node had 10 key:value pairs. This equated to about ~2,500k nodes/sec. Read stats pending.
Issues welcome on Github.
Community contributions welcome. PRs accepted after code review.
FAQs
A Mongo key:value adapter for Gunjs
We found that gun-mongo-key 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.