
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@beacio/profiles
Advanced tools
Pre-built BLE device profiles — heart rate, battery, device info. Typed parsers for Bluetooth GATT characteristics
Pre-built BLE device profiles -- heart rate, battery, device info. Typed parsers for Bluetooth GATT characteristics.
npm install @beacio/profiles @beacio/core
Enable Safari iOS support in your browser entry file:
import '@beacio/core/auto';
requestDevice() must be triggered from a direct user gesture such as a button click.
import { WebBLE } from '@beacio/core';
import { HeartRateProfile } from '@beacio/profiles';
const ble = new WebBLE();
const device = await ble.requestDevice({ filters: [{ services: ['heart_rate'] }] });
const hr = new HeartRateProfile(device);
await hr.connect();
hr.onHeartRate((data) => {
console.log(`${data.bpm} BPM, contact: ${data.contact}`);
console.log('RR intervals:', data.rrIntervals);
});
const location = await hr.readSensorLocation(); // 0=Other, 1=Chest, 2=Wrist
hr.stop(); // unsubscribe all
Use stop() as soon as the user leaves the live monitoring view. Profiles usually wrap notifications under the hood, so prompt cleanup helps both app responsiveness and battery life.
HeartRateProfile -- onHeartRate(cb), readSensorLocation(), resetEnergyExpended()BatteryProfile -- battery level reads and notificationsDeviceInfoProfile -- manufacturer, model, firmware, serial numberdefineProfile(config) -- factory to create custom profiles with typed parsersprofile.connect() only when the user is ready to interact with the device.requestDevice() call.profile.stop() before disconnecting or when the screen unmounts.MCP server for coding agents (Claude Code, Cursor, Copilot):
npx -y @beacio/mcp
Full SDK reference for LLM context: https://ioswebble.com/llms-full.txt
The @beacio/* packages (core, profiles, react) are the cross-browser BLE SDK -- they work on any platform with Web Bluetooth support (Chrome, Edge, iOS Safari via the extension). The @beacio/* packages (detect, cli, mcp, skill) handle iOS-specific extension detection, install prompts, and agent tooling. Use both together for full iOS Safari coverage.
FAQs
Pre-built BLE device profiles — heart rate, battery, device info. Typed parsers for Bluetooth GATT characteristics
The npm package @beacio/profiles receives a total of 2 weekly downloads. As such, @beacio/profiles popularity was classified as not popular.
We found that @beacio/profiles demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.