Socket
Socket
Sign inDemoInstall

authentication-popups-github

Package Overview
Dependencies
39
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    authentication-popups-github

Server plugin for implementing GitHub OAuth2 popup-based logins


Version published
Weekly downloads
1
Maintainers
1
Install size
7.55 MB
Created
Weekly downloads
 

Changelog

Source

v0.0.2 (2016-11-02)

* This Change Log was automatically generated by github_changelog_generator

Readme

Source

authentication-popups-github

Build Status Code Climate Test Coverage Dependency Status Download Status

Server plugin for implementing OAuth2 popup-based GitHub logins

Installation

npm install authentication-popups-github --save

Documentation

Please refer to the authentication-popups-github documentation for more details.

Complete Example

Here's an example of a Feathers server that uses authentication-popups-github.

const feathers = require('feathers');
const rest = require('feathers-rest');
const hooks = require('feathers-hooks');
const bodyParser = require('body-parser');
const errorHandler = require('feathers-errors/handler');
const plugin = require('authentication-popups-github');

// Initialize the application
const app = feathers()
  .configure(rest())
  .configure(hooks())
  // Needed for parsing bodies (login)
  .use(bodyParser.json())
  .use(bodyParser.urlencoded({ extended: true }))
  // Initialize your feathers plugin
  .use('/plugin', plugin())
  .use(errorHandler());

app.listen(3030);

console.log('Feathers app started on 127.0.0.1:3030');

License

Copyright (c) 2016

Licensed under the MIT license.

Keywords

FAQs

Last updated on 02 Nov 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc