Socket
Socket
Sign inDemoInstall

svelte-social-auth-custom

Package Overview
Dependencies
1
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    svelte-social-auth-custom


Version published
Weekly downloads
4
increased by300%
Maintainers
1
Install size
66.6 kB
Created
Weekly downloads
 

Readme

Source

Beyonk

Svelte Social Auth

js-standard-style CircleCI svelte-v2 svelte-v3

Google and Facebook Auth

SSR Ready Svelte v3 + v2

installation

npm i @beyonk/svelte-social-auth --save-dev

Usage

<GoogleAuth clientId="your-google-auth-client-id" on:auth-success={e => console.dir(e.detail.user)} />
<FacebookAuth appId="your-facebook-app-id" on:auth-success={e => console.dir(e.detail.user)} />

<script>
  import { GoogleAuth, FacebookAuth } from '@beyonk/svelte-social-auth'
</script>

Usage with v2

<GoogleAuth clientId="your-google-auth-client-id" on:auth-success={e => console.dir(e.detail.user)} />
<FacebookAuth appId="your-facebook-app-id" on:auth-success={e => console.dir(e.detail.user)} />

<script>
  import { GoogleAuth, FacebookAuth } from '@beyonk/svelte-social-auth/src/components.v2.js'
</script>

Attributes

Common attributes:

AttributeDescriptionTypeDefault
textText of the sign-in buttonstring'Sign in with '
buttonBackgroundColorHex, Named or rgb version of the button background colorstring'#4285F4'
disabledButtonBackgroundColorHex, Named or rgb version of the button background color, disabled statestring'grey'
buttonTextColorHex, Named or rgb version of the button text colorstring'#FFFFFF'
buttonWidth%, PX, EM, VW width, or auto for defaultstring'100%'

The attributes for the GoogleAuth component are:

AttributeDescriptionTypeDefault
clientIdGoogle service account client idstring-

The attributes for the FacebookAuth component are:

AttributeDescriptionTypeDefault
appIdFacebook app idstring-

Events

The events fired by the GoogleAuth component are:

EventPurposeProperties
on:auth-successUser authentication success{ user }
on:auth-failureUser authentication failure{ error }
on:init-errorGoogle Auth initialisation failure{ error }

The events fired by the FacebookAuth component are:

EventPurposeProperties
on:auth-successUser authentication success{ user }
on:auth-failureUser authentication failure{ error }

Developing / Contributing

Note that Facebook requires that you have HTTPS locally, despite their documentation to the contrary, so you will need to generate some SSL certs and point rollup config at them.

GOOGLE_CLIENT_ID=<your-google-client-id> FACEBOOK_APP_ID=<your-facebook-app-id> npm run dev

Keywords

FAQs

Last updated on 22 Apr 2021

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