Collection of bluetooth beacon signal utility functions.
Features
Beacon Tool allows you to generate, inspect and validate various bluetooth beacon payloads.
Installation
Via NPM:
npm i [-g] beacon-tool
Via Yarn:
yarn [global] add beacon-tool
Usage
Payload generation
beaconTool.generate(format, [pretty])
Generates a payload for the given format.
(string, [boolean]) => string
format string
The format to generate.
Recognized formats:
-
'ibeacon'
: Generates an 'iBeacon' UUID. -
'altbeacon'
: Generates an AltBeacon BeaconID. -
'eddystoneuid'
: Generates an Eddystone namespace-instance ID pair.
These strings are exposed as constants in beaconTool.signals
.
boolean
optional
pretty false
Default: Whether or not to to add dashes to the returned payload string.
See beatify()
for further information.
string
Returns A payload string for the given result.
Example
const beaconTool = require('beacon-tool');
const uuid = beaconTool.generate(beaconTool.signals.iBeacon.key);
console.log(uuid);
// de93f975b5d74c9ea8a606fd7cf9d45b
const prettyUUID = beaconTool.generate(beaconTool.signals.iBeacon.key);
console.log(prettyUUID);
// de93f975-b5d7-4c9e-a8a6-06fd7cf9d45b
Payload validation
beaconTool.validate(payload, format)
Validates a signal payload against a given format.
(string, string) => boolean
string
payload The payload to validate.
string
format The format to generate.
See Recognized Formats for information on format specification.
boolean
Returns Whether or not the given payload is valid for the given format.
Example
const beaconTool = require('beacon-tool');
const isValidIBeacon = beaconTool.validate(
'259771A0-2DFB-4554-B817-2FBFDB5DB1A7',
beaconTool.signals.iBeacon.key
);
if (isValidIBeacon) {
console.info('valid');
} else {
console.info('error');
}
Payload beautifier
beaconTool.beautify(payload, format)
Beautifies, i.e. adds dashes, to a given payload. beautify()
returns a new string.
AltBeacon specification does not specify any representation of it's beacon id with dashes, therefore beautifying an AltBeacon payload will not have any effect.
(string, string) => string
string
payload The payload to beatify.
string
format The payload format.
See Recognized Formats for information on format specification.
string
Returns The beatified payload.
Example
const beaconTool = require('beacon-tool');
const beautifiedPayload = beaconTool.beatify(
'DE93F975B5D74C9EA8A606FD7CF9D45B',
beaconTool.signals.iBeacon.key
);
console.log(beatifiedPayload);
// DE93F975-B5D7-4C9E-A8A6-06FD7CF9D45B
Payload identification
beaconTool.identify(payload)
Tries to identify a given payload.
(string) => array
Example
const beaconTool = require('beacon-tool');
const candidates = beaconTool.identify('DE93F975-B5D7-4C9E-A8A6-06FD7CF9D45B');
candidates.forEach((candidate) => {
console.info(`${beaconTool.get(candidate).displayName}`);
});
// iBeacon
string
payload The payload to identify.
array
Returns An array of potential candidates. The returned array contains the keys
of potential candiate formats.
Payload information
beaconTool.get(format)
Retrieves information about a given format.
(string) => object
string
format The format to retrieve information for.
See Recognized Formats for information on format specification.
object
Returns A signal information object.
See signals for futher information.
Example
const beaconTool = require('beacon-tool');
console.log(beaconTool.get('ibeacon'));
/**
{
dashes: [8, 12, 16, 20],
displayName: 'iBeacon',
key: 'ibeacon',
length: 32
}
*/
beaconTool.signals
Beacon signal constants.
const beaconTool = require('beacon-tool');
console.log(beaconTool.signals);
/**
{
altBeacon: {
displayName: 'AltBeacon',
key: 'altbeacon',
length: 40
},
iBeacon: {
dashes: [8, 12, 16, 20],
displayName: 'iBeacon',
key: 'ibeacon',
length: 32
},
eddystoneUid: {
dashes: [20],
displayName: 'Eddystone UID',
instanceId: {
length: 12
},
key: 'eddystoneuid',
length: 32,
namespace: {
length: 20
}
}
}
*/