actionhero
Version:
actionhero.js is a multi-transport API Server with integrated cluster capabilities and delayed tasks
15 lines (12 loc) • 387 B
JavaScript
exports.randomNumber = {
name: 'randomNumber',
description: 'I am an API method which will generate a random number',
outputExample: {
randomNumber: 0.123
},
run: function(api, data, next){
data.response.randomNumber = Math.random();
data.response.stringRandomNumber = data.connection.localize(['Your random number is %s', Math.random()]);
next(null);
}
};