UNPKG

particle-cli

Version:

Simple Node commandline application for working with your Particle devices and using the Particle Cloud

13 lines (7 loc) 209 B
#!/usr/bin/env node global.verboseLevel = 1; const hasValidNodeInstall = require('./lib/has-supported-node'); const CLI = require('./app/cli'); if (hasValidNodeInstall()){ new CLI().run(process.argv); }