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

lazy-fb

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lazy-fb

Load the Facebook SDK lazily

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

lazy-fb Travis npm package

NPM

lazy-fb let's you load Facebook's JS SDK lazily. It's just a very thin (~700 bytes) layer on top of Facebook's snippet.

Now, why would you want to do that? Well, you might only need the SDK in a few places of your app/site like your login or signup flow. So there's no need to load it in all the other places and force the user to download and evaluate all that JavaScript for nothing (~200kb).

Installation

Using npm:

$ npm install --save lazy-fb

Then with a module bundler like webpack, use as you would anything else:

// using ES modules
import lazyFB from 'lazy-fb'

// using CommonJS modules
const lazyFB = require('lazy-fb')

The UMD build is also available on unpkg:

<script src="https://unpkg.com/lazy-fb/lazy-fb.min.js"></script>

You can find the library on window.lazyFB.

Usage

The exported function returns a Promise which resolves with the SDK. So you can use it with promises or async/await. The SDK will also be globally available on window.FB. Calling the function multiple times will only load the SDK once.

const lazyFB = require('lazy-fb')

// Promises
lazyFB({ appId: 'your-app-id' }).then(FB => FB.getLoginStatus())

// async/await
const FB = await lazyFB({ appId: 'your-app-id' })
FB.getLoginStatus()

Options

On top of all the standard options for FB.init() like appId, xfbml, status, etc. you can pass the following options to change what will get loaded:

{
  lang: 'en_US', // the language of the SDK
  debug: false, // whether to load the debug build or not
  sdkModule: '' // Facebook recently separated some modules from SDK. Other values are ['xfbml.customerchat'] 
}

Take a look at https://developers.facebook.com/docs/javascript/advanced-setup for more options.

License

ISC

Keywords

FAQs

Package last updated on 15 Nov 2018

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