sails-devnull

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

Usage no npm install needed!

<script type="module">
  import sailsDevnull from 'https://cdn.skypack.dev/sails-devnull';
</script>

README

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