Socket
Socket
Sign inDemoInstall

minorm

Package Overview
Dependencies
16
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    minorm

MinORM - Light high-performance ORM for MySQL


Version published
Weekly downloads
24
decreased by-25%
Maintainers
1
Install size
2.24 MB
Created
Weekly downloads
 

Readme

Source

MinORM

Build Status codecov

MinORM is a high-performance ORM built on top of Node MySQL2 that is a continuation of Node MySQL-Native. Also MinORM uses Squel library as Query Builder

It's really lightweight, provide simple solutions that just works without a lot of configurations.

Why use MinORM

Main features:

  1. High performance
  2. Native SQL queries
  3. Automated left and inner joins by column name
  4. Insert and Update models without declaring Model structure (ORM works with database Metadata and know all tables and fields)
  5. Migrations manager and Schema Tool
  6. Built-in Query Builder based on extended Squel
  7. Fetching related data from joined tables by the same query using nestQuery

If you are tired by highweight ORMs like Bookshelf or Sequelize, and want just some basic functionality from it - MinORM can be a good start point. MinORM also have build-in Migrations module that you can use.

Installation and usage

npm install --save minorm

import {createManager} from 'minorm'

export const manager = createManager({
  //options like for MySQL2 pool creation
})
manager.connect()

export const PostsRepo = {
  ...manager.getRepository('posts'),
  async getPostsFromUser(id) {
    const postQuery = this.startQuery('post')
      .include('post', 'creator_id')
      .tryInclude('creator', 'avatar_id')
      .where('post.creator_id = ?', id)
      .criteria({
        'post.title': {
          $not: 'Bad title'
        }
      })
    const [result] = await manager.nestQuery(postQuery)
    //Or:
    const result = await postQuery.execute(true)
    return result.map(({post, creator}) => ({
      ...post,
      creator
    }))
  }
}

Manager

  • connect() - connect to database
  • getRepository(tableName) - returns a Repository
  • getConnection() - returns MySQL Connection from pool
  • getLogger() returns logger used for manager
  • getPool() - returns Connection pool
  • clear() - clear connection, Repositories and Metadata
  • getMetadataManager() - returns Metadata manager
  • setMetadataManager(manager) - replace Metadata manager with cachable
  • query(query: SqeulQuery) - execute query in pool
  • nestQuery(query: SquelQuery) - execute query and return result as [{table1: {feilds}, table2: {}}, {table1: {fiedls}}] etc
  • startQuery() - returns a wrapped Squel Query Builder
  • extendRepository(tableName, callback) - If you want to extend Repository by some methods you can follow two ways:
    1. Just mix methods as showed in example
    2. Use extendRepository method, that receive original repo object and must return new repo object. Can be used to override native methods like hydrate etc.

Repository

MinORM uses Repositories for working with tables. One table == one Repository. It has a lot of useful methods like:

  • find(id) - search single record in DB by id and wrap it as the model
  • findOneBy(criteria) - search single record in DB by criteria.
  • findBy(criteria, orderBy = {}, limit, offset) - search records by criteria with limits and offsets
  • startQuery(alias = null) - create select Query
  • create(data) - adds Model methods to any object with structure
  • hydrate(data, isFetched) - helper method that attach Model methods to any object and accept argument that promise that this object is fetched from DB without changes.
  • getMetadata() - returns object with all table columns
  • update(selector: number| Criteria, changes: Object): Promise<affectedRows> - update single or many rows in table
  • remove(selector: number| Criteria): Promise<affectedRows> - remove single or many rows in table

Criteria is a plain object with key is a column name, value is a simple string, number, etc or object with operator like $in, $not, $like and $notIn.

Model

MinORM don't have any column mappers and/or hydrators. So Models is just result from mysql2 qeury, with assigned non-enumerable methods:

  • save() - UPDATE or INSERT data to DB
  • populate(data) - populate data to model
  • remove() - remove model in DB

Debug

createManager supports second parameter as logger, you can choose logger to use it can be simple winston or any other logger.

Schema Tool and Migrations

MinORM have ability to write your own Migrations and initializers. For example:

import {createSchemaTool} from 'minorm'

const schemaTool = createSchemaTool(manager)
schemaTool.setSchemaInit({//It's also migration
  up(schema) {
    schema.table('users', table => {
      table.id()
      table.column('login').notNull()
      table.column('password').notNull()
      table.createdAndModified()
    })
    schema.table('posts', table => {
      table.id()
      table.column('title').notNull()
      table.column('body').text()
      table.column('creator_id').int().unsigned()
      table.createdAndModified()
      table.ref('creator_id', 'users', 'id')
    })
  },
  down(schema) {
    schema.dropTable('posts')
    schema.dropTable('users')
  }
})
schemaTool.getMigrationManager().addMigration(
  '2016-11-16 19:01:18',
  {
    up(schema) {
      schema.use('posts', table => {
        table.index('title')
      })
    },
    down(schema) {
      schema.use('users', table => {
        table.dropIndex('IDX_title')
      })
    }
  } 
)
schemaTool.initSchema().then(() => {
  console.log('Database inited')
})

When you write Migrations you don't need to worry about async things. All references will be added after all tables are created. So in case of cross-relations between tables you will not receive any problems.

Keywords

FAQs

Last updated on 04 May 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc