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

socket.io-sequelize

v1.0.1

Published

Sequelize middleware for your socket.io or engine.io app.

Downloads

7

Readme

socket.io-sequelize

This package provides a simple way to integrate your Sequelize models into your socket.io or engine.io middleware stack, making your models available on the socket object itself.

Installation

Install the package as an application dependency.

npm install socket.io-sequelize --save

This package does not have a direct dependency on Sequelize itself, so you will need to ensure it's included in your package dependencies. The benefit is that you can specify what version of Sequelize to work with.

Usage

Inject the middleware into your stack prior to your route handling logic and any other middleware that depends on your models.

var io = require('socket.io')();
var sequelize = require('socket.io-sequelize');

io.use(sequelize('db', 'user', 'pass', { host: 'localhost' }, 'app/models'));

The the first 4 parameters behave the same as Sequelize's instantiation. It accepts the database name, optional username, optional password, and optional connection options.

The final parameter is specific to the middleware and takes one of two options:

  1. A function that accepts a Sequelize instance and DataTypes reference as arguments, e.g.:

     io.use(sequelize('db', function (db, DataTypes) {
       db.define( ... );
     }));
  2. A string representing the path to a file to be imported via sequelize.import, e.g.:

     io.use(sequelize('db', path.resolve(__dirname, 'app/models')));

    Wherein your app/models/index.js file might look something like:

     var fs = require('fs');
     var path = require('path');
    
     module.exports = function (db, DataTypes) {
       var files = fs.readdirSync(__dirname).map(function (file) {
         return path.join(__dirname, file);
       }).filter(function (file) {
         return file !== __filename;
       });
    
       var models = {};
    
       files.forEach(function (file) {
         var model = db.import(file);
         models[model.name] = model;
       });
    
       Object.keys(models).forEach(function (name) {
         if ('associate' in models[name]) {
           models[name].associate(db);
         }
       });
    
       return models;
     };

    And every other file in the app/models folder would take on the structure:

     module.exports = function (db, DataTypes) {
       return db.defined( ... );
     };

License

socket.io-sequelize is released under the MIT License.