Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
openrecord
Advanced tools
OPENRECORD is an ActiveRecord inspired ORM for nodejs.
Currently it supports the following databases/datastores: SQLite3, MySQL, Postgres, Oracle, REST and LDAP (+ ActiveDirectory)
If you want to build a GraphQL endpoint for any of these databases, OPENRECORD has some built in features to support you!
As the name imply, it's open and very easy to extend. The whole package was build that way.
It has a lot of features, just take a look at the docs!
Here is an example how to get a single post
from an existing sqlite3 file (by primary key).
const Store = require('openrecord/store/sqlite3')
const store = new Store({
file: './my-posts-db.sqlite3',
autoLoad: true
})
store.ready(async () => {
const post = await store.Model('Post').find(1)
console.log(post)
})
You don't have to define your model (optional) and you also don't have to define your model's attributes (optional).
Take a look at the docs to get started!
If you've found a bug please report it via the issues page.
Before you submit a pull request, please make sure all tests still pass.
Sponsored by digitalbits.at
FAQs
Active record like ORM for nodejs
We found that openrecord 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.