
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Firejson is a simple json store lib with a similar syntax of the google firestore database lib, maded with TypeScript
npm i --save firejson
To set data make like this:
import firejson from 'firejson';
// setting up the database
const db = firejson('myDb');
// setting data
db.collection('myCollection').doc('myDoc').set({ foo: 'bar' });
// returns a boolean
To get data make like this:
import firejson from 'firejson';
// setting up the database
const db = firejson('myDb');
// getting data
const myData: any | boolean = db.collection('myCollection').doc('myDoc').get();
// returns a any object or a boolean
if its gonna throw an error returns false.
To update data make like this:
import firejson from 'firejson';
// setting up the database
const db = firejson('myDb');
// updating data
db.collection('myCollection').doc('myDoc').update({ todo: ['myTodoList'] });
// returns a boolean
To delete a doc make like this:
import firejson from 'firejson';
// setting up the database
const db = firejson('myDb');
// deleting data
db.collection('myCollection').doc('myDoc').delete();
// returns a boolean
FAQs
A simple json database with a similar syntax of the firestore database.
The npm package firejson receives a total of 2 weekly downloads. As such, firejson popularity was classified as not popular.
We found that firejson 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.