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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@r-berto811/sequelize-models-register

v0.0.3

Published

Generate file with registred sequelize models

Readme

sequelize-models-register npm version

The Command Line Interface (CLI) to generate file with exports of all models instances. This command is used with sequelize-cli.

Table of Contents

Installation

Install CLI locally to your node_modules folder with

$ npm install --save @r-berto811/sequelize-models-register

You should be able to run CLI with

$ node_modules/.bin/sequelize:register-models

Usage

Command

Sequelize Models Register CLI [Node: 6.11.2, CLI: 3.0.0, ORM: 4.8.0]

sequelize:register-models <dir> [options] <outfile>

Arguments:
  <dir>       Directory to find models in.
  <outfile>   Output file with exports of models classes.

Options:
  -V  --version       Show version number                             [boolean]
  -h  --help          Show help                                       [boolean]
  -s  --semicolons    Generate output file with semicolons            [boolean]
  -g  --generation    Set generation of javascript (es5, es6)         [string]
  -t  --template      Set path to custom template                     [string]
  -c  --config        Set path to file with database config           [string]

Running CLI

  sequelize:register-models ./database/models --generation es6 --config ./config/database.config.js ./app/models.js

Example of database config

  // config/database.config.js
  module.exports = {
    database: process.env.DB_DATABASE,
    username: process.env.DB_USERNAME,
    password: process.env.DB_PASSWORD,
    dialect: 'mysql',
    host: process.env.DB_HOST,
    port: process.env.DB_PORT
  }

Custom template

Template syntax

To create your custom template, use simple lodash template syntax:

'use strict';

// Import dependencies.
import { Sequelize, DataTypes } from 'sequelize';

// Declare config.
<% if (sequelizeConfig.file) { %>
  const config = require('<%= sequelizeConfig.file %>');
<% } else { %>
  const config = {
  <% Object.keys(sequelizeConfig.env).forEach(function(key){ %>  <%= key %>: <%=sequelizeConfig.env[key]%>
  <% }); %>};
<% } %>

// Create new sequelize instance and export
export const sequelize = new Sequelize(config.database, config.username, config.password, config);

// Export list of models
<% models.forEach(function(modelData){ %>
  export const <%= modelData.name %> = require('<%= modelData.path %>')(sequelize, DataTypes);
<% }); %>

Available data in templates

{
  sequelizeConfig: {
    // it will be used firstly, if config option is setted
    file: 'path/to/your/database/config.js',
    // default options to generate config, based on ENV parameters
    env: {
      database: `process.env.DB_DATABASE,`,
      username: `process.env.DB_USERNAME,`,
      password: `process.env.DB_PASSWORD,`,
      dialect: `process.env.DB_DIALECT || 'mysql',`,
      host: `process.env.DB_HOST || 'localhost',`,
      port: `process.env.DB_PORT || 3306`
    },
    // array of models data
    models: [
      { name: 'User', path: '../models/user.js' }
      { name: 'Profession', path: '../models/profession.js' }
    ]
  }
}

References