New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

react-facebook-login-component

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-facebook-login-component

React Component that lets you instantly login through facebook platform

latest
Source
npmnpm
Version
0.9.2
Version published
Maintainers
2
Created
Source

react-facebook-login-component

React Facebook Component to log users in through facebook

version MIT License

react-facebook-login-component is a module that easily lets you drop it into your existing project and get the benefits of Facebook Login. It's a plug and play component that'll fit in your workflow if your using standalone React or React with Redux.

You can find login with Google here

Up to date with the latest API Version

Usage

npm install --save react-facebook-login-component
import React from 'react';
import { FacebookLogin } from 'react-facebook-login-component';

class Login extends React.Component{

  constructor (props, context) {
    super(props, context);
  }

  responseFacebook (response) {
    console.log(response);
    //anything else you want to do(save to localStorage)...
  }

  render () {
    return (
      <div>
        <FacebookLogin socialId="yourAppID"
                       language="en_US"
                       scope="public_profile,email"
                       responseHandler={this.responseFacebook}
                       xfbml={true}
                       fields="id,email,name"
                       version="v2.5"
                       className="facebook-login"
                       buttonText="Login With Facebook"/>
      </div>
    );
  }

}

export default Login;

Keywords

React

FAQs

Package last updated on 25 Feb 2018

Did you know?

Socket

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