ResourceJS
Resource.js is designed to be a minimalistic Express library that reflects a Mongoose model to a RESTful interface. It does this through a very simple and extensible interface.
Installation
You can install Resource.js using NPM.
Usage
Provided the following code:
The following rest interface would then be exposed.
/resource - (GET) - List all resources.
/resource - (POST) - Create a new resource.
/resource/:id - (GET) - Get a specific resource.
/resource/:id - (PUT) - Replaces an existing resource.
/resource/:id - (PATCH) - Updates an existing resource.
/resource/:id - (DELETE) - Deletes an existing resource.
Parameters
The Resource
object takes 4 arguments.
app - This is the Express application.
route - This is the route to "mount" this resource onto. For example, if you were doing nested resources, this could be '/parent/:parentId'
name - The name of the resource, which will then be used for the URL path of that resource.
model - The Mongoose Model for this interface.
Only exposing certain methods
You can also expose only a certain amount of methods, by instead of using the rest method, you can use the specific methods and then chain them together like so.
Adding Before and After handlers
This library allows you to handle middleware either before or after the request is made to the Mongoose query mechanism. This allows you to either alter the query being made or, provide authentication.
For example, if you wish to provide basic authentication to every endpoint, you can use the before callback attached to the rest method like so.
You can also target individual methods so if you wanted to protect POST, PUT, and DELETE but not GET and INDEX you would do the following.
You can also do this by specifying the handlers within the specific method calls like so.
After Handlers: The after handlers allow you to modify the contents of the resource before it is handed over to the client. It does this by setting a resource
object on the res
object. This resource
object follows the following schema.
status: The status code that will be sent to the client.
error: Any error that may have been caused within the request.
item: The resource item that is going to be sent to the client.
For example, if you have a resource that has a title that is sent to the user, you could change that title by doing the following.
Virtual Resources
Virtual resources are not represented by mongodb documents. Instead, they are generated by functions acting on existing mongodb documents, typically via the mongodb aggregate
pipeline.
Resource.js supports this feature by passing options
to the resource.virtual
method. The virtual
method expects at least the path
and the before
option params to be set:
path
: Set to the name of the virtual resource. This will be used in the generated url.before
: Set to a function that will be used to generate the virtual resource.
This will result in a generated REST end-point with the following pattern:
/[resource-name]/virtual/[virtual-resource-name]
For example, defining a virtual resource called avg-weight
for a resource called elephant
will give a URL of:
/elephant/virtual/avg-weight
The shape of JSON data returned is determined by a before
function. This function will act on an existing document to return a virtual resource of arbitrary shape. Typically a mongodb aggregate
function will be used here although any valid model query is in fact allowed.
For example, to set up two virtual resources, max-price
and max-stock
, for a resource called product
you would write code similar to the following:
You can then define a couple of aggregate functions called max-price
and max-stock
using the mongoose model.
You can then setup the product
via resource.js by passing in the path
and the before
function for each virtual resource, like this:
Finally, you can retrieve the virtual resources using their generated URLs:
#####max-price
/product/virtual/max-price
returns the max-price
virtual resource as JSON:
#####max-stock
/product/virtual/max-stock
returns the max-stock
virtual resource as JSON:
Calling the PATCH method
ResourceJS fully implements the JSON-Patch spec RFC-6902. This allows for partial updates to be made directly to a resource and is therefore a very efficient way of updating a resource.
With JSON-Patch you can also test whether a resource is suitable for updating and if it is then only update the fields you actually need to update. You can apply an arbitrary sequence of tests and actions (see the spec RFC-6902 for more details) and if anyone should fail all the changes are rolled back and the resource is left untouched.
For example, using the Resource
schema above, we will increment just the numeric count
field but only if the count
value is the same as the value we are currently holding, in other words - only update the value if nobody else has updated it in the meantime.
This example uses the request npm package
Adding custom queries
Using the method above, it is possible to provide some custom queries in your before middleware. We can do this by adding a modelQuery to the req object during the middleware. This query uses the Mongoose query mechanism that you can see here http://mongoosejs.com/docs/api.html#query_Query-where.
For example, if we wish to show an index that filters ages greater than 18, we would do the following.
Passing write options on PUT, POST, PATCH, and DELETE requests
It is possible to pass a set of options to the underlying Document.save()
and Document.remove()
commands. This can be useful when plugins expect data to be passed in as options. We can do this by adding a writeOptions object to the req object during middleware. This uses the Mongoose mechanism that you can see here https://mongoosejs.com/docs/api.html#document_Document-save.
For example, a set of options can be added by doing the following.
Nested Resources
With this library, it is also pretty easy to nest resources. Here is an example of how to do it.
This would now expose the following...
/parent - (GET) - List all parents.
/parent - (POST) - Create a new parent.
/parent/:parentId - (GET) - Get a specific parent.
/parent/:parentId - (PUT) - Updates an existing parent.
/parent/:parentId - (DELETE) - Deletes an existing parent.
/parent/:parentId/child - (GET) - List all children of a parent.
/parent/:parentId/child - (POST) - Create a new child.
/parent/:parentId/child/:childId - (GET) - Get a specific child per parent.
/parent/:parentId/child/:childId - (PUT) - Update a child for a parent.
/parent/:parentId/child/:childId - (DELETE) - Delete a child for a parent.
Filtering the results
The index()
that is created is capable of doing some complex filtering using Query arguments within the URL. They are described as the following.
Filter | Query | Example | Description |
---|---|---|---|
equal |
|
| both return all male users |
not equal |
|
| returns all users who are not male ( |
greater than |
|
| returns all users older than 18 |
greater than or equal to |
|
| returns all users 18 and older (age should be a number property) |
less than |
|
| returns all users age 29 and younger |
less than or equal to |
|
| returns all users age 30 and younger |
in |
|
| returns all female and male users |
nin |
|
| returns all users who are not 18 or 21 |
exists=true |
|
| returns all users where the age is provided. |
exists=false |
|
| returns all users where the age is not provided. |
Regex |
|
| returns all users with a username starting with travis |
limit |
|
| limits results to the specified amount |
skip |
|
| skip to the specified record in the result set |
select |
|
| return only the specified fields |
Adding Swagger.io v2 documentation
Along with auto-generating APIs for your application, this library also is able to auto-generate Swagger.io documentation so that your APIs are well-documented and can be easily used and understood by everyone.
Each Resource object has the ability to generate the Swagger docs for that resource, and this can then be combined to create the Swagger docs necessary to feed into the Swagger UI tools.
Getting the swagger documentation for a resource
You can then use this to create a full specification for your API with all your resources by doing the following.
Last updated