Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
blini
is a modern ORM for MongoDB based on immutable data structure and promises.
Blini is currently in alpha. API may changed, don't use it for production applications.
import { Schema, Type, Model, Connection } from 'blini'
const connection = new Connection('mongodb://localhost/test')
const postSchema = new Schema({
title: Type.String(),
views: Type.Set(Type.String)
})
class Post extends Model(postSchema, connection, 'Cat') {
get summary() {
return `Post ${this.title}, ${this.likes.size} readers`
}
addView(ip) {
const { views } = this;
return this.merge({
views: views.add(ip)
})
}
}
const post = new Post({ title: 'My Super blog post' })
post.addView('127.0.0.1').save()
.then(function(savedPost) {
console.log(savedPost.summary)
})
First of all, this library is a Work-In-Progress and Proof-Of-Concept.
Before creating Blini, I've used a lot Mongoose for production applications, Blini borrowed a few concepts from it.
Blini tries to solve the question of "Why?" with a few principles:
Immutable data: By using Immutable.js, the Blini is built in a stateless fashion using immutable data structures, which leads to much easier to reason about code, and a much easier time working with data sets.
Simplicity: Blini tries to reduce the number of concepts and provide a unified API (it doesn't support callback, etc).
Composition: Instead of relying on a custom plugins logic to handle extensibility, it uses ES6 classes inheritances and compositions to extend models behavior.
Intuitive Data Structure: By using Immutable.js iterable data structure (List
, Map
and Set
), it makes easier to manipulate document.
If you're using Blini for the first time, check out the Getting Started guides and the Core Concepts to familiarize yourself with Blini's architecture and mental models. Once you've gotten familiar with those, you'll probably want to check out the full API Reference.
All contributions are super welcome!
Blini is Apache-licensed.
FAQs
Modern MongoDB ORM backed by immutable models
The npm package blini receives a total of 0 weekly downloads. As such, blini popularity was classified as not popular.
We found that blini 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.