Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netlify/netlify-identity-widget
A zero config, framework free Netlify Identity widget
https://github.com/netlify/netlify-identity-widget
Last synced: 2 days ago
JSON representation
A zero config, framework free Netlify Identity widget
- Host: GitHub
- URL: https://github.com/netlify/netlify-identity-widget
- Owner: netlify
- License: mit
- Created: 2017-08-28T20:23:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-23T02:14:56.000Z (20 days ago)
- Last Synced: 2025-01-03T05:57:24.112Z (9 days ago)
- Language: JavaScript
- Homepage: https://identity.netlify.com
- Size: 7.22 MB
- Stars: 775
- Watchers: 39
- Forks: 236
- Open Issues: 140
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-list - netlify-identity-widget
- awesome-redwood - Netlify Identity Widget - [Redwood Docs](https://redwoodjs.com/docs/authentication#netlify-identity-widget) (Auth / Providers)
README
![Netlify Identity Widget](identity.png)
[![npm version](https://badge.fury.io/js/netlify-identity-widget.svg)](https://badge.fury.io/js/netlify-identity-widget)
A component used to authenticate with Netlify's Identity service.
[Live demo](https://identity.netlify.com)
For usage example with React and React Router, please see our `/example` folder and [read the README](https://github.com/netlify/netlify-identity-widget/tree/master/example).
## What is Netlify Identity
Netlify's Identity service is a plug-and-play microservice for handling site
functionalities like signups, logins, password recovery, user metadata, and
roles. You can use it from single page apps instead of rolling your own, and
integrate with any service that understands JSON Web Tokens (JWTs).Learn more about this service from this
[blog post](https://www.netlify.com/blog/2017/09/07/introducing-built-in-identity-service-to-streamline-user-management/).## Usage
Simply include the widget on your site, and things like invites, confirmation
codes, etc, will start working.You can add controls for the widget with HTML:
```html
A static website
Login with Netlify Identity```
The widget will automatically attach itself to the window object as
`window.netlifyIdentity`.You can use this global object like this:
```js
// Open the modal
netlifyIdentity.open();// Get the current user:
// Available after on('init') is invoked
const user = netlifyIdentity.currentUser();// Bind to events
netlifyIdentity.on('init', user => console.log('init', user));
netlifyIdentity.on('login', user => console.log('login', user));
netlifyIdentity.on('logout', () => console.log('Logged out'));
netlifyIdentity.on('error', err => console.error('Error', err));
netlifyIdentity.on('open', () => console.log('Widget opened'));
netlifyIdentity.on('close', () => console.log('Widget closed'));// Unbind from events
netlifyIdentity.off('login'); // to unbind all registered handlers
netlifyIdentity.off('login', handler); // to unbind a single handler// Close the modal
netlifyIdentity.close();// Log out the user
netlifyIdentity.logout();// Refresh the user's JWT
// Call in on('login') handler to ensure token refreshed after it expires (1hr)
// Note: this method returns a promise.
netlifyIdentity.refresh().then((jwt)=>console.log(jwt))// Change language
netlifyIdentity.setLocale('en');
```#### A note on script tag versioning
The `v1` in the above URL is not pinned to the major version of the module API,
and will only reflect breaking changes in the markup API.### Module API
Netlify Identity Widget also has a
[module API](https://www.npmjs.com/package/netlify-identity-widget):```bash
yarn add netlify-identity-widget
```Import or require as usual:
```js
const netlifyIdentity = require('netlify-identity-widget');netlifyIdentity.init({
container: '#netlify-modal', // defaults to document.body
locale: 'en' // defaults to 'en'
});netlifyIdentity.open(); // open the modal
netlifyIdentity.open('login'); // open the modal to the login tab
netlifyIdentity.open('signup'); // open the modal to the signup tabnetlifyIdentity.on('init', user => console.log('init', user));
netlifyIdentity.on('login', user => console.log('login', user));
netlifyIdentity.on('logout', () => console.log('Logged out'));
netlifyIdentity.on('error', err => console.error('Error', err));
netlifyIdentity.on('open', () => console.log('Widget opened'));
netlifyIdentity.on('close', () => console.log('Widget closed'));// Unbind from events
netlifyIdentity.off('login'); // to unbind all registered handlers
netlifyIdentity.off('login', handler); // to unbind a single handler// Close the modal
netlifyIdentity.close();// Log out the user
netlifyIdentity.logout();// refresh the user's JWT
// Note: this method returns a promise.
netlifyIdentity.refresh().then((jwt)=>console.log(jwt))// Change language
netlifyIdentity.setLocale('en');// Access the underlying GoTrue JS client.
// Note that doing things directly through the GoTrue client brings a risk of getting out of
// sync between your state and the widget’s state.
netlifyIdentity.gotrue;
```#### `netlifyIdentity.init([opts])`
You can pass an optional `opts` object to configure the widget when using the
module API. Options include:```js
{
container: '#some-query-selector'; // container to attach to
APIUrl: 'https://www.example.com/.netlify/functions/identity'; // Absolute url to endpoint. ONLY USE IN SPECIAL CASES!
namePlaceholder: 'some-placeholder-for-Name'; // custom placeholder for name input form
locale: 'en'; // language code for translations - available: en, fr, es, pt, hu, pl, cs, sk - default to en
```Generally avoid setting the `APIUrl`. You should only set this when your app is
served from a domain that differs from where the identity endpoint is served.
This is common for Cordova or Electron apps where you host from localhost or a
file.## Localhost
When using the widget on localhost, it will prompt for your Netlify SiteURL the
first time it is opened. Entering the siteURL populates the browser's
localStorage.This allows the widget to know which instance of Netlify Identity it should
communicate with zero configuration.E.g. If your Netlify site is served from the `olddvdscreensaver.com` domain
name, enter the following when prompted by the widget when in development mode:```
https://olddvdscreensaver.com
```![](devmode.png)
## List of Alternatives
**Lowest level JS Library**: If you want to use the official Javascript bindings to GoTrue, Netlify's underlying Identity service written in Go, use https://github.com/netlify/gotrue-js
**React bindings**: If you want a thin wrapper over Gotrue-js for React, `react-netlify-identity` is a "headless" library, meaning there is no UI exported and you will write your own UI to work with the authentication. https://github.com/sw-yx/react-netlify-identity
**High level overlay**: If you want a "widget" overlay that gives you a nice UI out of the box, with a somewhat larger bundle, check https://github.com/netlify/netlify-identity-widget
**High level popup**: If you want a popup window approach also with a nice UI out of the box, and don't mind the popup flow, check https://github.com/netlify/netlify-auth-providers
You can also see an example of wrapping netlify-identity-widget in a React Hook here: https://github.com/sw-yx/netlify-fauna-todo/blob/master/src/hooks/useNetlifyIdentity.js
## FAQ
* TypeScript Typings are maintained by @nkprince007 ([see PR](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/30689)): `npm install @types/netlify-identity-widget` and then `import * as NetlifyIdentityWidget from "netlify-identity-widget"` (or `import NetlifyIdentityWidget from "netlify-identity-widget"` if you have `--allowSyntheticDefaultImports` on)
* If you experience a 404 while testing the Netlify Identity Widget on a local
environment, you can manually remove the `netlifySiteURL` from localStorage by
doing the following in the console.```js
localStorage.removeItem('netlifySiteURL');
```* See the `example` for how to integrate this widget with a react app.