Package Exports
- lil-orm
- lil-orm/dist/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (lil-orm) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Lil ORM
Lil ORM is a lightweight PostgreSQL ORM designed for Node.js. This compact project prioritizes clarity and simplicity in its API, making it effortless to interact with PostgreSQL databases. Although it's a lightweight ORM, it boasts a robust set of capabilities, letting developers create intricate database queries with ease.
While Lil ORM is primarily intended as a learning resource and experimental project, its lean design and user-friendly approach make it a noteworthy tool for those looking to understand the nuances of building APIs without the complexity that often accompanies larger ORMs.
Please note: Lil ORM is currently not recommended for use in production environments (yet), but rather as a learning tool and sandbox for testing and development purposes
⚠️ API are subjected to change ⚠️
Changelog
Version 2.0.0
Added
- Default database changed to PostgreSQL.
- Support for specifying
SELECT
clauses. - Ability to extract queries from repository for debugging.
Removed
- SQLite support as default database.
Planned Features
- Integrated Complex Query Language: Implement an integrated language for constructing complex queries, enhancing the ORM's ability to handle sophisticated data retrieval and manipulation scenarios.
- Dynamic Object Mapping: Enable dynamic mapping of database results to objects, supporting more flexible and dynamic data models.
- Automatic Support for Multiple DBMS Types: Expand the ORM to automatically support multiple Database Management Systems (DBMS), allowing seamless switching and interoperability across different database platforms.
- Loading of Related Objects: Introduce efficient loading mechanisms for related objects, enabling easier and more efficient handling of object relationships and dependencies in the data model.
- Stable Support for Migrations: Introduce stable support for database schema migrations, including the generation of migration scripts in TypeScript, to facilitate version-controlled schema changes and database evolution.
Install
npm i lil-orm
yarn add lil-orm
Define Entity
@Entity('user')
class UserEntity {
@PrimaryKey({
autoIncrement: true,
})
@Column({
type: 'INTEGER',
name: 'id',
})
id: number;
@Column({
type: 'TEXT',
name: 'name',
})
name: string;
@Column({
type: 'TEXT',
name: 'email',
})
email: string;
@Column({
type: 'JSON',
name: 'config',
})
config: any;
@Column({
type: 'BOOLEAN',
name: 'is_active',
})
isActive: boolean;
@Column({
type: 'DATE',
name: 'created_at',
})
createdAt: Date;
}
supported types:
- TEXT
- INTEGER
- REAL
- BOOLEAN
- DATE (ISO Format)
- JSON
⚠️ Warning: Important Configuration Required
To ensure proper functioning of the library, please make sure to configure your TypeScript project correctly.
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
Other configurations
Option 1: Enable useDefineForClassFields
In your project's tsconfig.json
, add or modify the compilerOptions
section to include the following:
{
"compilerOptions": {
"useDefineForClassFields": true
}
}
Option 2: Initialize Every Property with Default Values
If you cannot enable useDefineForClassFields
or prefer not to modify your TypeScript configuration, make sure to explicitly initialize every property in your entity class with a default value.
For example:
@Entity('tableName')
class MyEntity {
@PrimaryKey({
autoIncrement: true,
})
@Column({
type: 'INTEGER'
})
id: number = 0;
@Column({
type: 'TEXT'
})
name: string = '';
// ...other properties
}
Module Setup
import { LilORM } from 'lil-orm';
const databaseConnectionString = ':memory:';
const module = new LilORM(databaseConnectionString);
Create Table
(experimental API name)
module.createTable(UserEntity) //to create a table from an entity
CRUD Operations
//get repository
const repository = module.getRepository<UserEntity>(UserEntity);
//Insert
const userEntity = new UserEntity();
userEntity.id = 1;
userEntity.name = 'test';
userEntity.email = 'test@example.com';
userEntity.isActive = false;
userEntity.age = 42;
userEntity.config = null;
userEntity.createdAt = new Date();
await repository.insert(userEntity);
//Find by id
const users = await repository.retrieve(qb => qb.where('id').equals(1));
//Update
userEntity.name = 'updated';
await repository.update(userEntity, qb => qb.where('id').equals(1));
//Delete
await repository.delete({ id: 69 });
Custom query with query builder
let user: any[] = lilOrm.retrieve<UserEntity>(
qb => qb.forEntity(UserEntity)
.where('isActive').equals(true)
.and('age').greaterThan(18)
.or('config').equals({ allowed: true })
.finalize(),
(data) => data)
Transactions
TO-DO