Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
minoss-google-home
Advanced tools
This module adds support for Pushover notifications to Minoss server.
The API communication is based on google-home-audio-tts
.
Inside your Minoss root folder just use npm to install this Module.
$ npm install minoss-google-home
By default there are three configuration files available inside the config/
folder: audio
, devices
and messages
.
The configuration for audio
and messages
are optionally.
It is possible to store different predefined audio files and message objects there, if wanted.
For more details take a look inside the files or read about the message builder.
Before using this module the devices
configuration should be set up.
This file contains the ip
and default language
for all home devices where notifications should be send to.
It is possible to store the devices under own names.
The name default
is a reserved name.
It will select this device whenever no device name was given by request parameters.
So, if only one device is available, the name default
should be used.
module.exports = {
default: {
ip: '192.168.2.123',
language: 'en'
},
another: {
ip: '192.168.2.234',
language: 'de'
}
};
The basic usage is pretty simple.
When a default
device is defined just call the audio
or tts
script with a supplied url
or message
string to be send.
For more parameters take a look at the parameter shorthands.
All request parameters can be shorten to it's first character (except stream_type
, which is shorten with st
).
With this it is possible to use shorten URLs.
device -> d
language -> l
volume -> v
restore -> r
stream_type -> st
timeout -> t
speed -> s
message -> m
url -> u
Example:
http://localhost:8080/google-home/tts?**device**=default&**volume**=1&**message**=test
http://localhost:8080/google-home/tts?**d**=default&**v**=1&**m**=test
You can build the message with all properties by url parameter, as JSON
object or as stored configurations.
Messages can be predefined in configuration. If there are messages configured they can be send by it's name on request:
JSON
as Message ObjectIt is possible to use a JSON
string as message object on request.
It works the same way as with predefined messages:
http://localhost:8080/google-home/tts?message=**{"message":"my message","volume":1,"language":"en"}**
Please report bugs and feel free to ask for new features directly on GitHub.
Minoss is dual-licensed under MIT and GPL-2.0 license.
You like to support me?
You appreciate my work?
You use it in commercial projects?
Feel free to make a little donation! :wink:
FAQs
Google Home Module for Minoss
The npm package minoss-google-home receives a total of 0 weekly downloads. As such, minoss-google-home popularity was classified as not popular.
We found that minoss-google-home demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.