Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
GoblinDB | Fear the Goblin! | An amazing, simple and fun database for humans
An amazing, simple and fun database for humans
var GDB = require("goblindb");
var goblinDB = GDB();
console.log("Fear the Goblin!")
// Events supported
goblinDB.on('change', function(changes){
console.log("-- change detected!:", changes)
console.log("====================")
});
// Read all Database...
var originalData = goblinDB.get();
console.log("originalData:", originalData);
// Store data...
goblinDB.set({"data": "world!", "data2": "Hiiiii"});
// Update date...
goblinDB.update({"new data": "hellooo....", "new array": ["aaaa", true, 2], "data": "cambiado!"})
// Read all Database...
var currentData = goblinDB.get();
console.log("currentData:", currentData)
Check the official documentation in our website
You can run a demo in 4 steps!
git clone https://github.com/UlisesGascon/GoblinDB
cd GoblinDB
npm install
node demo/fear_the_goblin.js
You can test your changes...
npm test
Main target:
Features:
Main target:
Bugs Fixed:
Features:
Features:
Bugs Fixed
Notes: Just to solve issues with NPM.
Main target:
Features:
Features:
Notes: Just a "Hello world"
FAQs
GoblinDB | Fear the Goblin! | An amazing, simple and fun database for humans
The npm package goblindb receives a total of 2 weekly downloads. As such, goblindb popularity was classified as not popular.
We found that goblindb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.