Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
A small (900 byte) Custom Element to make Web Bluetooth a little easier to use.
<bt-device>
A small (900 byte) Custom Element to make Web Bluetooth a little easier to use.
See it in action (with a Bluetooth heart rate monitor): https://output.jsbin.com/mohezur/11
More details here: https://steele.blue/renderless-web-components/
Import it via your method of choice, but unpkg works great:
<script type="module" src="https://unpkg.com/bt-device?module"></script>
Then add a (render-less) element to your page with the settings you'd like:
<bt-device
service="40fc0000-8a8d-4a32-a455-c1148e24a9f1"
characteristic="40fc0001-8a8d-4a32-a455-c1148e24a9f1"
notifications="true"
></bt-device>
service: string
The GATT service you wish to interact with. Can be a UUID or a standardized service
characteristic: string
The GATT characteristic you wish to interact with. Can be a UUID or a standardized characteristic
notifications: boolean
Whether to receive notifications (event stream) from the characteristic after connecting.
parse: DataView => any
An optional function property you can use to "shape" the raw binary data coming from the Bluetooth device. Set this property to a function and it will be executed each time your characteristic emits data:
btDevice.parse = (input) {
const percentLeft = input.getUint8(0) / 2;
return percentLeft;
}
connectOptions: Object
Override the auto-generated connection options object. See https://developer.mozilla.org/en-US/docs/Web/API/Bluetooth/requestDevice for details
btService: BluetoothRemoteGATTService
Once connected, provides access to the service interface
btChar: BluetoothGATTCharacteristic
Once connected, provides access to the characteristic interface
connect(): Promise<void>
Attempts to connect to the Bluetooth device
data: CustomEvent<any>
Emitted whenever the characteristicvaluechanged
event occurs. Will contain an object that contains the data (passed through parse
if it is set).
btDevice.addEventListener('data', (e) => {
const value = e.detail.value;
console.log(value);
});
FAQs
A small (900 byte) Custom Element to make Web Bluetooth a little easier to use.
The npm package bt-device receives a total of 0 weekly downloads. As such, bt-device popularity was classified as not popular.
We found that bt-device demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.