GithubHelp home page GithubHelp logo

thomkenney / express-stormpath Goto Github PK

View Code? Open in Web Editor NEW

This project forked from stormpath/express-stormpath

0.0 0.0 0.0 14.01 MB

Build simple, secure web applications with Stormpath and Express!

Home Page: http://docs.stormpath.com/nodejs/express/

License: Apache License 2.0

Shell 0.13% JavaScript 89.27% HTML 10.61%

express-stormpath's Introduction

Express-Stormpath

NPM Version NPM Downloads Build Status Coverage Status

Express-Stormpath is an extension for Express.js that makes it incredibly simple to add user authentication to your application, such as login, signup, authorization, and social login.

Stormpath is a User Management API that reduces development time with instant-on, scalable user infrastructure. Stormpath's intuitive API and expert support make it easy for developers to authenticate, manage and secure users and roles in any application.

Getting Started

Follow these steps to add Stormpath user authentication to your Express.js app.

  1. Download Your Key File

Download your key file from the Stormpath Console.

  1. Store Your Key As Environment Variables

Open your key file and grab the API Key ID and API Key Secret, then run these commands to save them as environment variables:

$ export STORMPATH_CLIENT_APIKEY_ID=<YOUR-ID-HERE>
$ export STORMPATH_CLIENT_APIKEY_SECRET=<YOUR-SECRET-HERE>

On Windows, use the set or setx command instead of export.

  1. Get Your Stormpath App HREF

Login to the Stormpath Console and grab the HREF (called REST URL in the UI) of your Application. It should look something like this:

https://api.stormpath.com/v1/applications/q42unYAj6PDLxth9xKXdL

  1. Store Your Stormpath App HREF In an Environment Variable
$ export STORMPATH_APPLICATION_HREF=<YOUR-STORMPATH-APP-HREF>

On Windows, use the set or setx command instead of export.

  1. Install The SDK
$ npm install --save express-stormpath
  1. Include It In Your App
var stormpath = require('express-stormpath');
  1. Initialize It

You need to initialize the middlware and use it with your application. We have options for various use cases.

If your app is a traditional website:

Initialize the Stormpath module, and pass an empty set of options:

app.use(stormpath.init(app, { }));

This will enable the default features, such as login and registration pages.

If your app is a single page application (Angular, React)

You will need to tell our library where the root file is. For example, if your Angular app is in the client/ folder in your project:

app.use(stormpath.init(app, {
  web: {
    spa: {
      enabled: true,
      view: path.join(__dirname, 'client', 'index.html')
    }
  }
}));

Read more about the initialization in the documentation →

  1. Wait For The SDK

Wait for the SDK to get ready, then start the web server:

app.on('stormpath.ready', function () {
  app.listen(3000, function () {
    //...
  });
});
  1. Protect Your Routes

For websites and Single-Page Apps, use stormpath.loginRequired as a middleware to protect your routes:

app.get('/secret', stormpath.loginRequired, function (req, res) {
  //...
});

For API services that use HTTP Basic Auth or OAuth2, use stormpath.apiAuthenticationRequired:

app.get('/secret', stormpath.apiAuthenticationRequired, function (req, res) {
  //...
});

If the user tries to access this route without being logged in, they will be redirected to the login page.

  1. Login

To access a protected route, the user must first login.

Traditional Websites:

You can login by visiting the /login URL and submitting the login form.

Single Page Apps:

Your front-end client should POST this data to the /login endpoint:

{
  "username": "[email protected]",
  "password": "myPassword"
}

Note: make sure that your client is setting the Accept: application/json header on the request.

Using AngularJS? Try our Stormpath Angular SDK

API Services

If your app is an API service that uses our client_credentials workflow, your API consumers can obtain access tokens by making this POST to your server:

POST /oauth/token
Authorization: Basic <Base64Endoded(ACCOUNT_API_KEY_ID:ACCOUNT_API_KEY_SECRET)>;
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials

Read more about login in the documentation →

  1. Register

To be able to login, your users first need an account.

Traditional Websites:

Users can register by visiting the /register URL and submitting the registration form.

Single Page Applications:

Your front-end client should POST this data to the /register endpoint:

{
  "email": "[email protected]",
  "password": "mySuper3ecretPAssw0rd"
}

If the user was created successfully, you will receive a 200 response and the body will contain the account that was created. If an error occurred, we will send a 400 status with an error message in the body.

Note: make sure that your client is setting the Accept: application/json header on the request.

Using AngularJS? Try our Stormpath Angular SDK

Read more about registration in the documentation →

  1. That's It!

You just added user authentication to your app with Stormpath. See the documentation for further information on how Stormpath can be used with your Express.js app.

Documentation

For a full documentation of this library, see the documentation.

Help

Contact us via email at [email protected] or visit our support center.

Example

For an example app, see the Stormpath SPA Development Server.

Links

Below are some resources you might find useful.

License

Apache 2.0, see LICENSE.

express-stormpath's People

Contributors

rdegges avatar typerandom avatar robertjd avatar timothyej avatar greenkeeperio-bot avatar jrodmanu avatar lemieux avatar deusexlibris avatar jmls avatar ldhertert avatar jeffkole avatar cdaniel avatar bcaldwell avatar cannibalvox avatar coreybutler avatar dgisser avatar baer avatar erbridge avatar suryod avatar johnw424 avatar elomerc avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.