
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
[](https://github.com/AndreMiras/edilkamin.js/actions/workflows/tests.yml) [](h
This is a library for the Reverse Engineered "The Mind" Edilkamin API. The Mind offers an app/API to remote control the Edilkamin pellet stoves.
Using npm:
npm install edilkamin
Using yarn:
yarn add edilkamin
Basic usage:
import { signIn, deviceInfo, setPowerOff } from "edilkamin";
const macAddress = "aabbccddeeff";
const token = signIn(username, password);
deviceInfo(token, macAddress).then(console.log);
setPowerOff(token, macAddress).then(console.log);
It's also possible to change the default backend URL:
import { signIn, configure } from "edilkamin";
const baseUrl = "https://my-proxy.com/";
const { deviceInfo, setPower } = configure(baseUrl);
deviceInfo(token, macAddress).then(console.log);
setPower(token, macAddress, 0).then(console.log);
The library includes a CLI tool that is useful for debugging.
yarn cli deviceInfo --mac $MAC --username $USERNAME --password $PASSWORD
Or with npx
once the library is installed:
npx edilkamin deviceInfo --mac $MAC --username $USERNAME --password $PASSWORD
It seems like there's no endpoint to list stoves associated to a user. The way the official app seem to work is by probing the stove via bluetooth. Then cache the stove MAC address to a local database for later use.
FAQs
[](https://github.com/AndreMiras/edilkamin.js/actions/workflows/tests.yml) [](h
The npm package edilkamin receives a total of 0 weekly downloads. As such, edilkamin popularity was classified as not popular.
We found that edilkamin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.