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.

  • 3.0.0
  • latest
  • 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 systems only

Install

$ npm install --save bluetooth

Usage

const bluetooth = require('bluetooth');

bluetooth.isOn().then(state => {
	console.log(state);
	//=> false
});

bluetooth.on().then(state => {
	console.log('Bluetooth state changed to on');
});

bluetooth.off().then(state => {
	console.log('Bluetooth state changed to off');
});

bluetooth.toggle().then(state => {
	console.log('Bluetooth state changed to on');
});

CLI

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

  Example
    $ bluetooth
    $ bluetooth on
    $ bluetooth off

API

.isOn()

Check if bluetooth is on or off. Returns a promise for a boolean.

.on()

Turn bluetooth on. Returns a promise.

.off()

Turn bluetooth off. Returns a promise.

.toggle([force])

Toggle the bluetooth state. Returns a promise.

force

Type: boolean

Force a state when toggling.

License

MIT © Andreas Gillström

Keywords

FAQs

Package last updated on 25 Oct 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