Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Uranio is the lighest 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 mondodb
// 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.Client({uri, db_name});
// Get all products
const products = await urn.products.get_items({});
// Create a product
await urn.products.put_item({
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.