rung-sdk
v1.0.7
Published
Rung Software Development Kit
Downloads
7,201
Readme
This is the software development kit for writing Rung applications.
Hello World!
const { create } = require('rung-sdk');
const { String: Text } = require('rung-sdk/dist/types');
function main(context) {
const { name } = context.params;
return `Hello, ${name}!`;
}
const params = {
name: {
default: 'visitor',
description: 'Name of the user to greet',
type: Text
}
};
module.exports = create(main, { params });