Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Uranio is the lightest Typescript Object Document Mapper (ODM) for MongoDB and
Object Relational Mapping (ORM) for MySQL.
It creates a client for querying collections/tabls in a database by just parsing
the types in a repository.
It is the simplest and fastest way to query a database without the need to build a Data Access Layer (DAL) from the defined types.
yarn add uranio
Run:
uranio generate -d mongodb
// or
uranio generate -d mysql
The above command search for all interfaces in your repository that extends
the uranio.atom
interface.
For each of these interfaces it creates a method to query a collection with a
name of the interface.
For example if in your code you have:
import uranio from 'uranio';
interface Product extends uranio.atom {
title: string;
description: string;
price: number;
}
then Uranio generates a method for querying a collection named products
:
import uranio from 'uranio';
const uri = process.env.MONGO_DATABASE_URI || '';
const db_name = process.env.MONGO_DATABASE_NAME || '';
const urn = uranio.MongoDBClient({uri, db_name});
// Get all products
const products = await urn.products.get_atoms({});
// Create a product
await urn.products.put_atom({
title: 'Uranio mug',
description: 'A radioactive mug for your coding breakfast',
price: 4.99
});
_id
for MongoDBWhen extending an interface with uranio.atom
(MongoDB) this add a primary
index attribute _id
to the interface, so there is no need to add it manually.
import uranio from 'uranio';
interface Product extends uranio.atom {
title: string;
description: string;
price: number;
}
// It resolves in:
// {
// _id: string;
// title: string;
// description: string;
// price: number;
// }
Logo credits https://www.jacopotripodi.com/
FAQs
Uranio is a type-safe ODM for MongoDB
The npm package uranio receives a total of 93 weekly downloads. As such, uranio popularity was classified as not popular.
We found that uranio demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.