login-with-mern

1.0.1 • Public • Published

login-with-mern

login-with-mern is a React component designed to simplify the authentication process in applications. It handles login redirection and token retrieval and provides user profile information upon successful authentication.

Installation

You can install the package via npm:

npm install login-with-mern

Usage

Here’s how you can use the LoginWithMERN component in your React application:

Basic Usage

  1. Import the Component

    import React from 'react';
    import LoginWithMERN from 'login-with-mern';
  2. Add the Component to Your App

    const App = () => {
        const onSuccess = (userProfile) => {
            console.log('User Profile:', userProfile);
        };
    
        const onError = (error) => {
            console.error('Authentication Error:', error);
        };
    
        return (
            <div>
                <h1>My App</h1>
                <LoginWithMERN
                    clientId="YOUR_CLIENT_ID"
                    clientSecret="YOUR_CLIENT_SECRET"
                    redirectUri="YOUR_REDIRECT_URI"
                    onSuccess={onSuccess}
                    onError={onError}
                >
                    Login with MERN
                </LoginWithMERN>
            </div>
        );
    };
    
    export default App;

Props

  • clientId (string): Your client ID for the MERN authentication service.
  • clientSecret (string): Your client secret for the MERN authentication service.
  • redirectUri (string): The URI to redirect to after authentication.
  • onSuccess (function): Callback function that is called with the user profile upon successful authentication.
  • onError (function): Callback function that is called with an error object if authentication fails.
  • children (node): Optional. The content to display inside the button (default is "Login With MERN").

Example

Here's a simple example of how to use the LoginWithMERN component in a React application:

import React from 'react';
import LoginWithMERN from 'login-with-mern';

const App = () => {
    const onSuccess = (userProfile) => {
        console.log('User Profile:', userProfile);
    };

    const onError = (error) => {
        console.error('Authentication Error:', error);
    };

    return (
        <div>
            <h1>My Application</h1>
            <LoginWithMERN
                clientId="YOUR_CLIENT_ID"
                clientSecret="YOUR_CLIENT_SECRET"
                redirectUri="YOUR_REDIRECT_URI"
                onSuccess={onSuccess}
                onError={onError}
            >
                Login with MERN
            </LoginWithMERN>
        </div>
    );
};

export default App;

Contributing

If you find any issues or have suggestions for improvement, feel free to open an issue or submit a pull request on GitHub.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    1

Package Sidebar

Install

npm i login-with-mern

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

23.1 kB

Total Files

6

Last publish

Collaborators

  • mernjs