Socket
Socket
Sign inDemoInstall

fbjs

Package Overview
Dependencies
Maintainers
8
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fbjs

A collection of utility libraries used by other Facebook JS projects


Version published
Maintainers
8
Created

What is fbjs?

The fbjs package is a collection of utility libraries used by Facebook in building its JavaScript applications. It is not specifically designed for external use but offers various utilities that can be beneficial in web development, such as manipulation of DOM elements, event handling, and AJAX requests.

What are fbjs's main functionalities?

DOM Manipulation

This feature allows developers to check if one DOM element is contained within another. The function 'containsNode' from fbjs can be used to verify if a specific child node is a descendant of a given parent node.

import { containsNode } from 'fbjs/lib/containsNode';
const parent = document.getElementById('parent');
const child = document.getElementById('child');
console.log(containsNode(parent, child));

Event Handling

fbjs provides utilities for handling DOM events. The 'addEvent' function can be used to attach event listeners to DOM elements, simplifying the process of managing events.

import { addEvent } from 'fbjs/lib/EventListener';
const button = document.getElementById('myButton');
addEvent(button, 'click', function() { alert('Button clicked!'); });

AJAX Requests

The 'fetchWithRetries' function from fbjs enhances the standard fetch API by adding automatic retries for failed requests, which is particularly useful in network-unstable environments.

import { fetchWithRetries } from 'fbjs/lib/fetchWithRetries';
fetchWithRetries('https://api.example.com/data', {
  method: 'GET'
}).then(response => response.json()).then(data => console.log(data));

Other packages similar to fbjs

FAQs

Package last updated on 04 Dec 2015

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