auth0/webtask-editor-templates

Name: webtask-editor-templates

Owner: Auth0

Description: null

Created: 2016-08-22 18:23:06.0

Updated: 2018-03-08 00:37:39.0

Pushed: 2018-03-08 02:28:17.0

Homepage: null

Size: 43

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Webtask Editor Templates

Here you will find the entire list of templates that you can use from Webtask Editor.

Templates

Basically you have two views of templates:

How to create a template

If you have a webtask to share, you can create a Pull Request and add your template. The team will review it and once it is aproved the template will be available through Webtask Editor.

Fields

name

The name of the template. It will appear on the templates section.

type

This is the type of the example. It can be sample or webhook. Currently not in use.

description

The description of the template it will appear on the list of templates.

author

Indicates who writes the template.

or: 
me: johndoe
nk: https://github.com/johndoe

sampleRequest

Sample request gives you the posibility to have a sample request by default for testing the webtask.

leRequest: 
thod: 'POST'
pe: 'json'
de: 'body'
ta: |
{
  "token":"REPLACE_WITH_SLACK_TOKEN",
  "team_id":"T0001",
  "team_domain":"example",
  "channel_id":"C2147483705",
  "channel_name":"test",
  "timestamp":"1355517523.000005",
  "user_id":"U2147483697",
  "user_name":"jdoe",
  "text":"googlebot: What is the air-speed?",
  "trigger_word": "googlebot:"
}

settings

ings:
rse: true
rge: true

secrets

This is the list of secrets that your template requires for working, basically a key/value pair.

ets: 
BHOOK_SECRET: 'REPLACE_WITH_SLACK_TOKEN'

note

Here you can put some instructions about how to use the template or explain what it does. A note, contains the following fields:

:
tle: Description
ntent: |
The `context` argument behaves the same way as in the two simpler programming models. The body of the request will be unconsumed unless the `pb` claim of the [webtask token](https://webtask.io/docs/token) is set to 1. Note that this programming model does not have a concept of a callback. Ending the HTTP response indicates completion.

code

The actual code for the webtask. It supports js or es6.

:
: |
module.exports = function (context, req, res) {
  res.writeHead(200, { 'Content-Type': 'text/html '});
  res.end('<h1>Hello, world!</h1>');
}

6: |
'use latest';

module.exports = (context, req, res) => {
  res.writeHead(200, { 'Content-Type': 'text/html '});
  res.end('<h1>Hello, world!</h1>');
}
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.