New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bluelinky

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bluelinky

> An unoffcial API wrapper for Hyundai bluelink

  • 0.0.8
  • npm
  • Socket score

Version published
Weekly downloads
89
increased by18.67%
Maintainers
1
Weekly downloads
 
Created
Source

bluelinky

An unoffcial API wrapper for Hyundai bluelink

CI npm

Install

npm install bluelinky

Example

const BlueLinky = require('bluelinky');

(async () => {

	const client = new BlueLinky({
		username: 'someguy@gmail.com',
		password: 'password'
	);

	// Perform the login so we can fetch a token
	await client.login();

	const vehicle = await client.registerVehicle('JH4KA7650MC002609', '1111');
	const status = await vehicle.status(true);

	console.log(status);

})();

Supported Features

  • Lock
  • Unlock
  • Start
  • Stop
  • Health
  • Flash Lights
  • Panic
  • API Stats
  • Vehicle Status
  • Account Info
  • Account Messages
  • Enrollment Status
  • Vehicle Service Info
  • Pin Status

Responses

You can find JSON response captures in the docs folder for analysing.

Observations

Seems the API has daily limits for commands, unsure of the numbers yet.

Show your support

Give a ⭐️ if this project helped you!

FAQs

Package last updated on 07 Dec 2019

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