Socket
Socket
Sign inDemoInstall

@bigcommerce/app-sdk-js

Package Overview
Dependencies
1
Maintainers
16
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @bigcommerce/app-sdk-js

BigCommerce App JavaScript SDK


Version published
Weekly downloads
3
increased by50%
Maintainers
16
Install size
2.52 MB
Created
Weekly downloads
 

Changelog

Source

1.0.0

  • Initial release
  • Feature parity with old BigCommerce SDK
  • Refactor from commmonjs to ES modules and ES6 syntax

Readme

Source

BigCommerce App SDK

Overview

The BigCommerce (BC) JS SDK is a simple javascript library used to manage apps in the control panel. BC's JS SDK includes functionality to prevent users from being logged out of the control panel while using an app. Additionally, BC's JS SDK includes out of the box support for handling logout requests.

App Installation (Development)

  1. Copy the SDK locally
    • git clone git@github.com:bigcommerce/app-sdk-js.git
  2. Install necessary packages
    • cd app-sdk-js
    • npm install
  3. Create an NPM link
    • npm link
  4. Link your app's package to the SDK, e.g.
    • cd ../sample-app-nodejs sample-app-nodejs
    • npm link app-sdk-js

Usage

In its most basic form, the BigCommerce SDK is used to keep apps in sync with the control panel. This prevents users of an application from being logged out. To consume the SDK, it should be loaded at the top of an application; ideally, as part of the main index. This enables the SDK to properly communicate with the control panel by covering the entire application.

In your application's main index (or app) file, import the library:

import 'bigcommerce-app-sdk-js';

Next, initialize the SDK. This should be done in the first part of the application that has access to the window object. In React-based applications, including NextJS, this can be done inside of useEffect or componentDidMount (for class components).

window.bcAsyncInit = function() {
  Bigcommerce.init({
    onLogout: callback
  });
}

Finally, to add an additional layer of security, an onLogout callback can be passed. This callback will be hit if the user logs out of the control panel, including logging out from a separate tab. For example, the NextJS sample app calls an internal API which removes the user from the active session.

FAQs

Last updated on 02 Aug 2022

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