Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ectypes-sequelize

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ectypes-sequelize

a Sequelize.js strategy for eccies.js

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

ectypes-sequelize

A ectypes strategy for Sequelize.js - http://www.sequelizejs.com/.

Ectypes can be found at http://github.com/nicholasf/ectypes.js

Installation

npm install ectypes-sequelize

Explanation

Calls to build() and create() on a Sequelize model are supported.

First, create the Sequelize connection and configure it on the ectypes-sequelize strategy. Then load the strategy into ectypes.

var ectypes = require('ectypes');
var sequelize = new Sequelize('ectypes_test', 'nicholas', null);
var ectypesSequelize = require('ectypes-sequelize').setup(sequelize);

ectypes.load(ectypesSequelize);

Once you have defined an ectype for your model:

//the Sequelize model definition
var Project = sequelize.define('Project', {
  title: Sequelize.STRING,
  description: Sequelize.TEXT
});

//the ectype for the Project model
var projectType = {
	Project: {
		title: function(){ return Faker.Name.findName() }
	}
};

ectypes.add(projectType);

You may then call build() or create() upon it through ectypes to produce the object.

ectypes.Project.create().success(function(project){
	console.log(project.id, project.title);  //this logs something like 6 'Autumn Medhurst' (using Faker)
});

Use hooks to model associations.

	ectypes.plan(
		{
			Project: {
				title: function(){ return Faker.Name.findName() },
				description: function(){ return Faker.Lorem.findSentences() },
				_hooks: [ 'add a task to a project', function(project, functionName){
					if (functionName === 'create'){				
						Task.create().success(function(task){
							project.task = task;
							project.save();
						});
					}
				}]
			}
		});

	project = ectypes.Project.build();

Running Tests

mocha --ignore-leaks tests/ectypes-sequelize-test.js 

Credits

This library was made while working at Moneytribe - http://moneytribe.com.au.

FAQs

Package last updated on 19 Aug 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc