npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@libstack/sequel

v1.1.1

Published

Libstack Server - Sequelize Integration

Downloads

7

Readme

@libstack/sequel

Adds sequelize integration to your @libstack/server.

Installing

npm install @libstack/sequel --save

New env variables

  • VERBOSE: When true, SQL will be logged to console
  • SYNC: This variable indicates to execute the syncronization process
  • DB_DIALECT: Sequelize database dialect
  • DB_HOST: Sequelize database address
  • DB_PORT: Sequelize database port
  • DB_NAME: Sequelize database name
  • DB_USERNAME: Sequelize database user
  • DB_PASSWORD: Sequelize database password
  • DB_POOL_MAX_CONNECTIONS: Max connections on pool
  • DB_POOL_MAX_IDLE_TIME: Max idle time for connections on pool
  • DB_MAX_CONCURRENT_QUERIES: Max concurrent queries on sequelize

Link Models to Sequelize

This module provides a way to automatically add your models to the main sequelize instance.

import { IsUUID, Model, PrimaryKey, Table, Column, Length } from 'sequelize-typescript';
import { SequelizeModel } from '@libstack/sequel';

@SequelizeModel // just use this decorator and the model will be added to sequelize
@Table({ tableName: 'person' })
export class Person extends Model<Person> {

  @IsUUID("4")
  @PrimaryKey
  @Column
  id: string;

  @Length({ min: 3, max: 32 })
  @Column
  first_name: string;

  @Length({ min: 3, max: 32 })
  @Column
  last_name: string;

  @Column
  age: number;

}

Migration

The migration is done through raw SQL files, which gives more control on what you are modifying on the database. You will need to create a folder with the supported dialects as subfolders, for example:

└ db/
  ├ postgres/
  └ mysql/ 

Then, add the scripts with the given format name:

└ db/
  ├ postgres/
    └ V20191123130301__create.sql

Which means:

V{YYYY}{MM}{DD}{HH}{mm}{SS}__{script_name}.sql

Migration scripts will be executed on the chronological order.

Then you need to load the migrations on @libstack/sequel

import { database } from '@libstack/sequel';
import { join } from 'path';

database.loadMigrations({ dir: join(__dirname, '..', 'db') });

And on @libstack/server you will need to configure a prestart script

import { Server } from '@libstack/server';
import { database } from '@libstack/sequel';

const server: Server = new Server();
server.beforeStartup(database.sync);

Separate statements

Some connectors may limit the execution as 1 statement per query call. Which means migration will need to separate statements on migration files.

To do that you will need to enable the statement separation

database.loadMigrations({ 
  dir: join(__dirname, '..', 'db'),

  /**
   * IMPORTANT Note: The statement separation is based on the semicolon, which means
   * that creation of FUNCTION, TRIGGER or STORED PROCEDURE are NOT supported on this mode.
   */
  separateStatements: true 
});

IMPORTANT Note: The statement separation is based on the semicolon, which means that creation of FUNCTION, TRIGGER or STORED PROCEDURE are NOT supported on this mode.

Syncing manually

You can manually sync database, mostly used on tests

import { database } from '@libstack/sequel';

describe('My Test Case', () => {
  /* the clear is a property that, when set to true, will erase the database then sync again
   * this is important to not have tests with side effects
   * but this flag can only be used if the NODE_ENV is `test`. */
  before(() => database.sync({ clear: true }));
});