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

bluetooth

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bluetooth

Get or set Bluetooth state

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
20
increased by185.71%
Maintainers
2
Weekly downloads
 
Created
Source

bluetooth Build Status

Get or set Bluetooth state

Currently OS X only

Install

$ npm install --save bluetooth

Usage

var bluetooth = require('bluetooth');

bluetooth.isOn(function (err, state) {
	console.log(state);
	//=> false
});

bluetooth.on(function (err) {
	console.log('Bluetooth state changed to on');
});

bluetooth.off(function (err) {
	console.log('Bluetooth state changed to off');
});

bluetooth.toggle(function (err) {
	console.log('Bluetooth state changed to on');
});

API

.isOn(callback)

Check if bluetooth is on or off.

.on(callback)

Turn bluetooth on.

.off(callback)

Turn bluetooth off.

.toggle([force], callback)

Toggle the bluetooth state.

force

Type: boolean

Force a state when toggling.

CLI

$ npm install --global bluetooth
$ bluetooth --help

  Example
    $ bluetooth
    $ bluetooth on
    $ bluetooth off

License

MIT © Andreas Gillström

Keywords

FAQs

Package last updated on 09 Jul 2015

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