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

@bradycorporation/brady-web-sdk

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bradycorporation/brady-web-sdk

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

  • 3.0.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
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 @bradycorporation/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/@bradycorporation/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)

Set Up (Alternative)

When using a web-based framework that does not support "importmap" or the framework does not support this syntax of import pathing, complete the following steps.

(This alternative method was investigated and proven using the Angular web application framework. These steps might not work exactly the same in all frameworks.)

  1. To install the brady-web-sdk package, navigate to your application's root in a command prompt and use the command:
npm i @bradycorporation/brady-web-sdk
  1. Add the following lines of code to the tsconfig.json:
"allowJs":true,
"noImplicitAny":false
  1. In the code, you may use the following import statement:
import BradySdk from '@bradycorporation/brady-web-sdk';

DISCLAIMER: There might be a warning when using this import statement. This can be ignored and the functionality should still work as expected. This warning reads: "Could not find a declaration file for module '@bradycorporation/brady-web-sdk'." It may also suggest "Try npm i --save-dev @types/bradycorporation__brady-web-sdk if it exists or add a new declaration (.d.ts) file containing declare module '@bradycorporation/brady-web-sdk';". You should not have to do this for the SDK to be successfully initialized and used.

  1. You may initialize the BradySdk class as such:
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 a Mac as a work-around.

Keywords

FAQs

Package last updated on 15 Oct 2024

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