JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 22
  • Score
    100M100P100Q20577F
  • License ISC

Implementation of JSON-API for Express

Package Exports

  • express-json-api-resource

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (express-json-api-resource) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ExpressJS JSON-API middleware

Make JSON-API-compliant backend API resources. Mongoose support so far.

Learn about the JSON-API specification here: http://jsonapi.org/

Getting started

  • Install it
npm install --save express-json-api-resource
  • Require it and use it in different ways. The jsonApi function accepts an options object. See further down the available options:
var jsonApi = require('express-json-api-resource');
var User = require('./models/user');
  1. Allow it to fully control a resource
app.use('/user', jsonApi({model: User}));
  1. You can tell it to implement only some of the endpoints
var router = require('express').Router({mergeParams: true});
var jsonApiUser = require('express-json-api-resource')({model: User});

router.route('/user')

// The individual methods also accept an options object
.get(jsonApiUser.methods.getList({populate: 'company'}))
.post(jsonApiUser.methods.post())
;

router.route('/user/:id')
.delete(jsonApiUser.methods.delete())
.get(function(req, res, next) {
  // Your own implementation
  return User
  .findOne({name: 'John Doe'})
  .lean()
  .then(function(user) {
    res.send(jsonApiUser.hydrateTopDocument(user, null, req));
  });
})
;

Options

List of available options that can be passed:

model

Type: function

Description: Required. A class function of the model to be implemented by the resource.

dbAdapter

Type: String

Description: Default: 'mongoose'. The name of the adapter to be used. Right now only Mongoose is supported.

populate

Type: String

Description: A string passed to the populate method of the queries.

send

Type: Boolean

Description: Default: true. Should the resource be sent to the client?

catch

Type: Boolean

Description: Default: true. Should the errors be catched?

parseObject

Type: function

Description: A function to parse each object before it is sent to the client.

Example:

parseObject: function(obj) {
  delete obj.password;
  return obj;
}

Functions available

methods.getList(options)

methods.get(options)

methods.post(options)

methods.delete(options)

methods.patch(options)

hydrateTopDocument(data, err, req)

hydrateSingleObject(data, req)

Write custom db adapter

Currently we only support Mongoose, but you can write your own database adapter. Just write the methods needed. Here's the Mongoose implementation as an example. Remember that every function should return a Promise except getId.

var jsonApi = require('express-json-api-resource');

jsonApi.dbAdapters.mongoose = {
  getList: function(options, req) {
    return options.model
      .find(req.query.filter)
      .populate(options.populate)
      .exec();
  },

  get: function(options, req) {
    return options.model
      .findById(req.params.id)
      .populate(options.populate)
      .exec();
  },

  post: function(options, req) {
    var m = extend({}, req.body.data.attributes);

    return options.model
      .create(m)
      .then(function(obj) {
        return options.model
          .populate(obj, {
            path: options.populate
          });
      });
  },

  patch: function(options, req) {
    return options.model
      .findById(req.params.id)
      .exec()
      .then(function(obj) {
        extend(obj, req.body.data.attributes);

        return obj
          .save()
          .then(function(newObj) {
            return options.model
              .populate(newObj, {
                path: options.populate
              });
          });
      });
  },

  put: function(options, req) {
    return this.patch(options, req);
  },

  delete: function(options, req) {
    return options.model
      .findById(req.params.id)
      .exec()
      .then(function(obj) {
        return obj.remove();
      });
  },

  getId: function(obj) {
    return obj._id;
  }
};

TODO

  • Find a way to add links to the objects
  • Improve documentation
  • Error handling
  • More configuration options
  • Accept POST requests without attributes