Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@bradycorporation/brady-web-sdk
Advanced tools
The Brady Web SDK allows users to communicate with Brady Printers using a web browser.
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
npm i @bradycorporation/brady-web-sdk
<!-- 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>
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.)
npm i @bradycorporation/brady-web-sdk
"allowJs":true,
"noImplicitAny":false
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.
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.
FAQs
The Brady Web SDK allows users to communicate with Brady Printers using a web browser.
We found that @bradycorporation/brady-web-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.