0.6.1 • Published 6 years ago

miter-sequelize v0.6.1

Weekly downloads
10
License
SEE LICENSE IN LI...
Repository
github
Last release
6 years ago

Build Status

miter-sequelize

This module, miter-sequelize, is a ORM implementation that wraps Sequelize. It is intended to be used as a plugin for the Miter Framework. This module is experimental.

Installation

First, install miter-sequlize using NPM.

npm install --save miter-sequelize

Next, inject SequelizeORMService into your Miter server when it is launched.

import { Miter, ORMService } from 'miter';
import { SequelizeORMService } from 'miter-sequelize';

Miter.launch({
    // ...
    
    provide: [
        // ...
        { provide: ORMService, useClass: SequelizeORMService }
    ]
});

Contributing

Miter-Sequelize is an experimental plugin to Miter, which is itself a relatively young framework. There are many ways that it can be improved. If you notice a bug, or would like to request a feature, feel free to create an issue. Better yet, you can fork the project and submit a pull request with the added feature.

Changelog

See what's new in recent versions of Miter.

Attribution

Special thanks to BrowserStack for generously hosting our cross-browser integration tests!

BrowserStack