
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
A carefuly created set of bindings to present an easy way to handle RethinkDB instances.
Rethinkly is a collection of methods to make more literal and legible gathering data from rethink into JavaScript applications. Supports node and browser.
Rethink. Again.
- $ yarn add rethinkly
- $ npm i rethinkly --save
import { createLink } from 'rethinkly'
const dbConfig = {
host: process.env.ENV === 'mock' ? '172.18.0.2' : 'localhost',
port: 32769,
db: 'the_database',
}
const instance = createLink(dbConfig)
Retrieving data (data.get)
import { createLink, data } from 'rethinkly'
const instance = createLink(dbConfig)
// Get your data as list
const users = data.get(instance, 'users')
/** output
[
{
id: 'a3bbd8e3-b53f-4ecd-bab9-6c65cfcf931b',
name: 'Caio Alcantara',
nickname: 'caio',
role: '99bd6af9-922e-4787-a97d-3d915f60e65b'
}
]
*/
/**
* Match your results using where clause
*/
const users = data.get(instance, 'users', { role: '99bd6af9-922e-4787-a97d-3d915f60e65b' })
/**
* Implicit byId
*/
const users = data.get(instance, 'users', 'a3bbd8e3-b53f-4ecd-bab9-6c65cfcf931b')
/** output
[
{
id: 'a3bbd8e3-b53f-4ecd-bab9-6c65cfcf931b',
name: 'Caio Alcantara',
nickname: 'caio',
role: '99bd6af9-922e-4787-a97d-3d915f60e65b'
}
]
*/
FAQs
a library to make easier the operations handling in rethinkdb
The npm package rethinkly receives a total of 1 weekly downloads. As such, rethinkly popularity was classified as not popular.
We found that rethinkly 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.