auth0/auth0-extension-boilerplate

Name: auth0-extension-boilerplate

Owner: Auth0

Description: null

Created: 2015-12-15 14:43:24.0

Updated: 2016-05-04 12:24:47.0

Pushed: 2016-09-30 00:58:56.0

Homepage: null

Size: 15

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Usage

  1. npm init

  2. npm install express --save

  3. npm install webtask-tools --save

  4. Create index.js with the minimal express extension:

    express = require('express');
    Webtask = require('webtask-tools');
    
    app = express();
    
    get('/', function (req, res) {
    status(200).send('Hello World');
    
    
    le.exports = app;
    
Authenticating the extension with Auth0

A useful extension would typically use the Auth0 API. We created a module that abstract away the OAuth2 consent flow with the Auth0 API.

  1. npm install auth0-oauth2-express --save

  2. Add the auth0-oauth2-express module and configure the scopes you want. This will ask the right consent to the user.

    auth0   = require('auth0-oauth2-express');
    
    use(auth0({
    es: 'read:connections'
    
    
Running locally

To run the sample extension locally:

m install
m start
Deploying as Auth0 Custom Extension
  1. Go to Auth0 Extensions
  2. Click on + Create Extension
  3. Fill in the textbox with https://github.com/auth0/auth0-extension-boilerplate
  4. Click on continue
  5. Finally, click on install
What is Auth0?

Auth0 helps you to:

Create a free Auth0 Account
  1. Go to Auth0 and click Sign Up.
  2. Use Google, GitHub or Microsoft Account to login.
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.