UNPKG

meross

Version:

A command-line tool for configuring and managing Meross smart home devices.

10 lines (9 loc) 347 B
#!/usr/bin/env node 'use strict'; import pkg from '../package.json' with { type: 'json' }; import { program } from 'commander'; program .version(pkg.version) .command('info [options]', 'get information about compatable Meross smart device') .command('setup [options]', 'setup compatable Meross smart device') .parse(process.argv);