svelte-facebook-login
TypeScript icon, indicating that this package has built-in type declarations

1.3.0 • Public • Published

Svelte Facebook Login

npm versionLicense: MITBuild StatusNetlify StatusLanguage grade: JavaScript

Facebook Login Component to Svelte

Installation

npm i svelte-facebook-login
// OR
yarn add svelte-facebook-login

version with typescript

npm i svelte-facebook-login@next
// OR
yarn add svelte-facebook-login@next

Note: to use this library in sapper, install as devDependency. See the link.

Demo Link

Local demo:

git clone https://github.com/andrelmlins/svelte-facebook-login.git
cd svelte-facebook-login
npm install && npm run dev

Examples

An example of how to use the library:

<script>
  import FacebookLogin from "svelte-facebook-login";
</script>

<FacebookLogin
  clientId="XXX"
  state="1"
  redirectUri="http://localhost:5000/"
  on:success={params => console.log(params)}
  on:error={error => console.log(error)}
  let:onLogin
>
  <button on:click={onLogin}>Facebook Login</button>
</FacebookLogin>

Properties

Component props:

Prop Type Description
clientId string Client ID for Facebook OAuth application
state string Value created by the maintenance state between the request and the callback
redirectUri string Registered redirect URI for Facebook OAuth application
responseType string Grant type the application wants to use
scope string A space-delimited list of permissions that the application requires
pollInterval number Login success analysis interval

Events

Prop Type Description
success func Call with success
error func Call with error
request func Call with offset

Slot Properties

Prop Type Description
onLogin func Call for login

NPM Statistics

Download stats for this NPM package

NPM

License

Svelte Facebook Login is open source software licensed as MIT.

Readme

Keywords

Package Sidebar

Install

npm i svelte-facebook-login

Weekly Downloads

15

Version

1.3.0

License

MIT

Unpacked Size

28.2 kB

Total Files

7

Last publish

Collaborators

  • andrelmlins