auth0/webtask-tools

Name: webtask-tools

Owner: Auth0

Description: Tools to facilitate working in a webtask context.

Created: 2015-06-30 15:02:12.0

Updated: 2018-04-20 15:41:32.0

Pushed: 2018-03-27 14:38:23.0

Homepage: null

Size: 38

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Usage

This module contains helper functions to convert common http(s) servers to functions suitable for running in a webtask.

Example

This example shows how you can transform an entire express server into a function suitable for using in a webtask.

webtask.js

Express = require('express');
Webtask = require('webtask-tools');
server = Express();

er.use(require('body-parser').json());

reate
er.post('/', function (req, res) {
createInMongo(req.webtaskContext.data.MONGO_URL, req.body, function (err, data) {
    if (err) return res.status(500).send("Error creating record.");

    res.json(data);
});


ead
er.get('/', function (req, res) {
fetchDataFromMongo(req.webtaskContext.data.MONGO_URL, function (err, data) {
    if (err) return res.status(500).send("Error reading record.");

    res.json(data);
});


pdate
er.put('/', function (req, res) {
updateInMongo(req.webtaskContext.data.MONGO_URL, req.body, function (err, data) {
    if (err) return res.status(500).send("Error updating record.");

    res.json(data);
});


elete
er.del('/', function (req, res) {
removeFromMongo(req.webtaskContext.data.MONGO_URL, function (err, data) {
    if (err) return res.status(500).send("Error removing record.");

    res.json(data);
});


xpose this express server as a webtask-compatible function

le.exports = Webtask.fromExpress(server);

API

Runner.fromConnect(connectServer)

Alias: Runner.fromExpress

Returns a function that will inject a single request into the supplied server with the 3-argument webtask signature:

tion (context, req, res) {}

The webtask context object will be available as req.webtaskContext from within route handlers.

Runner.fromServer(httpServer)

Alias: Runner.fromRestify

Returns a function that will inject a single request into the supplied server with the 3-argument webtask signature:

tion (context, req, res) {}

The webtask context object will be available as req.webtaskContext from within route handlers.

Runner.fromHapi(hapiServer)

Returns a function that will inject a single request into the supplied server with the 3-argument webtask signature:

tion (context, req, res) {}

The webtask context object will be available as request.webtaskContext from within route handlers.

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

Author

Auth0

License

This project is licensed under the MIT license. See the LICENSE file for more info.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.