Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

piral-auth

Package Overview
Dependencies
Maintainers
1
Versions
933
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

piral-auth

Extensions for handling authentication in Piral.

  • 0.8.0-pre.682
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
190
decreased by-86.19%
Maintainers
1
Weekly downloads
 
Created
Source

Piral Logo

Piral Authentication · GitHub License npm version tested with jest Gitter Chat

This is an extension library that only has a peer dependency to piral-core. What piral-auth brings to the table is a set of API extensions that can be used with piral or piral-core. By default, these extensions are not integrated in piral, so you'd need to add them to your Piral instance. The set includes the getUser API to retrieve the user, login / logout functionality and user state management incl. features and permissions.

Documentation

For details on the provided API check out the documentation at the Piral website or on GitHub.

Setup and Bootstrapping

The provided library only brings API extensions for pilets to a Piral instance.

For the setup of the library itself you'll need to import createAuthApi from the piral-auth package.

import { createAuthApi } from 'piral-auth';

For the integration this depends on the Piral instance.

For piral-core-based instances this boils down to:

const PiralInstance = createInstance({
  // important part
  extendApi: extendApis([createAuthApi]),
  // ...
});

For piral-based instances the integration looks like:

renderInstance({
  // important part
  extendApi: extendApis([createAuthApi]),
  // ...
});

Events

The extension gives the core a set of new events to be listened to:

  • change-user

The events are fully typed.

License

Piral is released using the MIT license. For more information see the license file.

Keywords

FAQs

Package last updated on 17 Oct 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc