From c90c453f85b07adb346bc55c2b685d689a2e96f7 Mon Sep 17 00:00:00 2001 From: vince Date: Thu, 8 Feb 2018 18:29:03 +0100 Subject: [PATCH] docs: add documentation on new pm2 install command --- bin/pm2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/pm2 b/bin/pm2 index 2202a765..5f34369c 100755 --- a/bin/pm2 +++ b/bin/pm2 @@ -464,11 +464,11 @@ commander.command('update') /** * Module specifics */ -commander.command('install [module|git:// url]') +commander.command('install [module|git:// url|json]') .alias('module:install') .option('--v1', 'install module in v1 manner (do not use it)') .option('--safe [time]', 'keep module backup, if new module fail = restore with previous') - .description('install or update a module and run it forever') + .description('install or update a module (or a set of modules) and run it forever') .action(function(plugin_name, opts) { if (opts.v1) commander.v1 = true;