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-ts-entity

v1.0.9

Published

This project helps you to build sequelize models with typescript with different concept. Instead of building models with json, you can create typescript classes to represent a strongly type model.

Downloads

6

Readme

Sequelize typescript entity

This project helps you to build sequelize models with typescript with different concept. Instead of building models with json, you can create typescript classes to represent a strongly type model.

Installing

sequelize-ts-entity is completely on top of sequelize, so you can add this dependency to your typescript project:

npm install sequelize-ts-entity --save-dev

Starting example

This repo has tests inside. Please clone the repository, install dependencies and run test:

git clone https://github.com/torabian/sequelize-ts-entity
cd sequelize-ts-entity
npm install
npm start

Implemention described below step by step.

Import sequelize-ts-entity

You need to import some set of classes and functions from sequelize-ts-entity library, also including Sequelize itself.

import {STRING, EntityModel} from "sequelize-ts-entity";
const Sequelize = require("sequelize");

Create a database connection

Normally you need to create a connection with database before using Sequelize. do it as normal:

const connection = new Sequelize('mysql://root:root@localhost:3306/nwsclub');

Defining a model

Here is the different part. Instead of creating the Sequelize way a model, like:

var User = sequelize.define('user', {
  firstName: {
    type: Sequelize.STRING,
    field: 'first_name' // Will result in an attribute that is firstName when user facing but first_name in the database
  },
  lastName: {
    type: Sequelize.STRING
  }
}, {
  freezeTableName: true // Model tableName will be the same as the model name
});

Now you can define by extending the EntityModel:

/**
 * Defining new modeling system
 */
class UserModel extends EntityModel {
   
    @STRING()
    public Firstname() {
      // This will automatically generate first name
    }

    @STRING()
    public Lastname() {
      // this will automatically generate last name
    }

    public Action1() {
      return "This not a field"
    }

}

let User = UserModel.GetInstance("user" , connection);

Using model

Now you can continue normally with User object to query. for more information about Sequelize functions, check: http://docs.sequelizejs.com/en/v3/docs/getting-started/

User.sync({force: true}).then(function () {
  // Table created
  
  return User.create({
    Firstname: 'John',
    Lastname: 'Hancock'
  });
}).then(function () {
  User.findOne().then(function (data) {
      console.log("Hello: " , data.dataValues);
  }) 
});