Skip to content

gaugendre/sails-devnull

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image_squidhome@2x.png

sails-devnull

Status

Stability: 1 - Experimental

Purpose

/dev/null adapter for Sails

Wait WAT?!

These aren't the datas you're looking for

Thoughts

Responsibility segregation style

FooBarCommand.create(req.params.all(), function(err, sanitized_data) {

  if (err) {
    return res.json({
      status: 'error',
      error: err
    });
  }

  // send `sanitized_data` elsewhere

});
api/models/foo/FooBarCommand.js
module.exports = {

  adapter: 'devnull',

  autoUpdatedAt: false,
  autoPK: false,
  schema: true,

  attributes: {
    id: {
      type: 'uuidv4',
      required: true,
      primaryKey: true
    },
    name: 'string',
    timestamp: 'datetime'
  }
};

Request validator module

Hook to validate on the request level: https://github.com/Josebaseba/sails-hook-validator

Other patterns

Who knows..

About Sails.js

http://sailsjs.com

About Waterline

Waterline is a new kind of storage and retrieval engine. It provides a uniform API for accessing stuff from different kinds of databases, protocols, and 3rd party APIs. That means you write the same code to get users, whether they live in mySQL, LDAP, MongoDB, or Facebook.

githalytics.com alpha

License

MIT

About

Non-persistent out-memory adapter for Sails.js / Waterline

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published