Socket
Socket
Sign inDemoInstall

brady-web-sdk

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    brady-web-sdk

The Brady Web SDK allows users to communicate with Brady Printers using a web browser.


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

The Brady Web SDK

The brady-web-sdk package allows connectivity and the printing of images to supported Brady printers from a web browser.

You may refer to sdk.bradyid.com for detailed documentation of the API. All available API methods are accessed using this BradySdk object that you will initialize in a script.


Set Up

  1. To install the brady-web-sdk package, navigate to your application's root in a command prompt and use the command:
npm i brady-web-sdk
  1. Since the brady-web-sdk is not a Node.js module, importing the module requires users to map the import using the script type "importmap". Refer to this article for more details on these imports.
<!-- In the application's index.html/entry point, map the SDK using it's installation 
path to a custom import name. This name is not required to be "brady-web-sdk". -->

<script type="importmap">
    { 
        "imports": {
            "brady-web-sdk": "./node_modules/brady-web-sdk/dist/bundle.js"
        }                   
    }                     
</script> 
  1. To use the SDK, you may now use your import name in a JavaScript file like:
import BradySdk from 'brady-web-sdk'
var bradySdk = new BradySdk(printerUpdatesCallback)

The Brady Web SDK is completely dependent on the Bluetooth Web API at the current moment. Therefore, click here to refer to all supported browsers. All of these supported browsers have been tested including the mentioned mobile browsers.

NOTE: The most popular web browser for Mac users is Safari. Since Safari is not supported with the Bluetooth Web API, you may install any of the supported browsers on Mac as a work-around.

Keywords

FAQs

Last updated on 26 Mar 2024

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