npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

minoss-google-home

v0.1.2

Published

Google Home Module for Minoss

Downloads

6

Readme

Google Home for Minoss

GitHub version NPM version Dependency version

This module adds support for Pushover notifications to Minoss server. The API communication is based on google-home-audio-tts.

Table of Contents


Installation

Inside your Minoss root folder just use npm to install this Module.

$ npm install minoss-google-home

Configuration

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'
    }
};

Basic Usage

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.

http://localhost:8080/google-home/tts?message=hello%20world

Parameter Shorthand

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

Message Builder

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:

http://localhost:8080/google-home/tts?message=name

Using JSON as Message Object

It 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"}

Bugs / Feature request

Please report bugs and feel free to ask for new features directly on GitHub.

License

Minoss is dual-licensed under MIT and GPL-2.0 license.

Donation

You like to support me?
You appreciate my work?
You use it in commercial projects?

Feel free to make a little donation! :wink: