New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

flightkit

Package Overview
Dependencies
Maintainers
3
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flightkit

![flightkit-200](https://js.flybits.app/images/Flybits-Header-flightkit-thin.png) # Flightkit

latest
npmnpm
Version
2.1.0
Version published
Weekly downloads
75
-45.26%
Maintainers
3
Weekly downloads
 
Created
Source

flightkit-200

Flightkit

v2.1.0

Flybits Flightkit is a fully contained, framework agnostic solution for personalized UI and Content within your web applications. Composed of native web components you can simply drop pure HTML tags into your application and view curated experiences from the Flybits platform.

Quickstart

Here is the bare minimum code required to quickly embed a Flybits powered UI container within your existing application. For more flexible and robust options, read more in the following sections starting with Installation.

  • Import

via NPM:

$ npm install flybits flightkit --save
import Flybits from 'flybits/dist/flybits.mjs';
import { FlybitsSlot } from 'flightkit';

or via a CDN

<!-- Import the Flybits.js core SDK -->
<script src="https://cdn.jsdelivr.net/npm/flybits@2.16.1/dist/flybits.min.js"></script>
<!-- Import the Flightkit library -->
<script type="module" src="https://cdn.jsdelivr.net/npm/flightkit@2.0.0/dist/flightkit.js"></script>
  • Declare
<flybits-slot ref-id="offers"></flybits-slot>
  • Authenticate
<script>
  // Use existing Flybits.js authentication strategies
  Flybits.init({
    HOST: 'https://api.demo.flybits.com'
  }).then(function(){
    return Flybits.Session.connect(new Flybits.idp.AnonymousIDP({
      projectID: '42FA7D27-9D44-42ED-A112-EAED2385B36C'
    }))
  })
</script>
  • Enjoy Contextual Personalized Content

Carousel of curated content

Note: Layouts & content must be configured within the Flybits Experience Studio for them to appear within a FlybitsSlot.

FAQs

Package last updated on 09 Mar 2026

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