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

sequelize-tools

v0.0.3

Published

Reduce Sequelize boilerplate/config

Downloads

222

Readme

Build Status

sequelize-tools

Tools to facilitate choosing and initializing database connections with the Node.js SQL ORM Sequelize. sequelize-tools reads database connection configurations from a Node module which you provide, and offers a simple API for initializing and using global Sequelize connections based on the environment defined in the NODE_ENV environment variable.

Installation

Add sequelize-tools to dependencies in package.json:

npm install --save sequelize-tools

Usage

Database connection configuration

Create a connection configuration file (located by default at server/config/database.[js|coffee] from your project root). This is a Node module which exports an object DBConfig, specifying database names and credentials for different environments:

exports.DBConfig = {

  development: {
    dbName:   "my_app_development",
    user:     "postgres",
    password: "password",
    options: {
      dialect: "postgres",
      port:    5432
    }
  },

  test: {
    dbName:   "my_app_test",
    user:     "postgres",
    password: "password",
    options: {
      dialect: "postgres",
      port:    5432
    }
  }

};

Since the config file is a regular Node module, the exported object can be constructed dynamically if needed:

var defaultOptions = {
      dialect: "postgres",
      port:    5432
    },
    credentials = fetchCredentialsFromSystem();

exports.DBConfig = {

  development: {
    dbName:   "my_app_development",
    user:     credentials.development.user,
    password: credentials.development.password,
    options:  defaultOptions
  },

  test: {
    dbName:   "my_app_test",
    user:     credentials.test.user,
    password: credentials.test.password,
    options:  defaultOptions
  }

};

NB: Never check passwords and other sensitive information into source control. If you leave your database credentials in plain text as in the first example above, then it is recommended that you check in only an "example" file with dummy info (e.g., config/database.js.example) and add the real config file to .gitignore. For an interesting example of pulling database credentials dynamically from the local system, see "database.yml should be checked in."

An alternate location for the config file can be specified in the environment variable SEQUELIZE_DB_CONFIG, which will override the default location, e.g.:

SEQUELIZE_DB_CONFIG=my_config_dir/database.coffee node my_app

Database interaction

The sequelize-tools module exports a class db with which all database connections are accessed. The db.init() function will automatically determine the appropriate connection based on the environment (NODE_ENV), connect to the DB with the credentials in the config file, and sync the schema for any registered models:

db = require("sequelize-tools").db

db.init(function() {
  // successfully connected, authenticated, synced
});

NB: in the test environment, db.init() will sync the schema with the option force: true, which will wipe any existing data in the test database. Calling db.init() before each test will ensure a clean database.

The db.sequelize() function returns the Sequelize object for the default connection, which can be used to register models and call any other standard Sequelize functions:

db = require("sequelize-tools").db

MyModel = db.sequelize().define("my_model", {title: Sequelize.STRING});

Since sequelize-tools lazy-loads and then retains a reference to the base connection, separate modules within your app need not worry about passing around an initialized sequelize object in order to communicate with the correct database.

Local development and running tests

Clone repo:

git clone [email protected]:tdumitrescu/sequelize-tools.git

Install dependencies:

npm install

Create PostgreSQL test database (accessed with user "postgres"/"password"):

psql -c 'create database sequelize_tools_test;' -U postgres

Run Mocha test script:

npm test

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request