@transomjs/transom-server-functions
v2.0.0
Published
Add custom functions to server-side Transom code
Downloads
5
Readme
transom-server-functions
Transom-server-functions is a plugin for a TransomJS REST api server. Using this plugin you can create and deploy your own functions to the API server. The functions become end-points on your REST API. They can be secured with the security plugin. Server functions have access to the complete server side API, which is the aggregate of all the configured plugins on the server.
Installation
$ npm install --save @transomjs/transom-server-functions
Usage
When creating and configuring your TransomJS server to use the server functions plugin, it will need to be included as follows:
//require the plugin alongside transomjs
var TransomCore = require('@transomjs/transom-core');
var transomServerFx = require('@transomjs/transom-server-functions');
const transom = new TransomCore();
// Register the plugin.
transom.configure(transomServerFx);
//load my api definitions
var myApi = require('./myApi');
// Initialize all the plugins using my api definitions.
transom.initialize(myApi).then(function(server){
...
};
Api Definitions for the plugin
You'll need to include a 'functions' object in your api definition as a child of definition
:
...,
"functions": {
"mySpecialFunction":{
"methods": ["POST","GET","DELETE","PUT"],
"function": function(server, req, res, next) {
//do stuff
next();
},
"acl": {
"groups": ["marketing", "sales"]
}
},...more functions
The corresponding end point will be:
<baseurl>/fx/mySpecialFunction
it may be called with the request methods that are included in the the methods
array.
If the security plugin is available on the server, then the acl
property is used to restrict access to the end-point. The caller will need to be authenticated and be member of at least one of the groups in the array.
The end-point function definition
The end point server function becomes a route handler in the node server. The function call is very similar to that of a generic route handler, and it must behave the same way. Rather than just getting the request, response and next arguments, the end-point function is also gets a reference to the transomJS server as the first argument. Internally, transom uses Restify to create the REST API server. Please refer to their documentation for implementation details of the request and response.
@param server TransomJS server instance
@param req Request object
@param res Response object
@param next Next function which must be called on completion, optionally with an error object as argument.
function (server, req, res, next) {
//do stuff
console.log('You can see this in your console...');
next();
};