Synopsis nodekit-cli plugin [options] Manage project plugins add [...] ............ Add specified plugins --searchpath ....... When looking up plugins by ID, look in this directory and each of its subdirectories before hitting the registry. Multiple search paths can be specified. --noregistry ................... Don't search the registry for plugins --link ......................... When installing from a local path, creates a symbolic link instead of copying files. The extent to which files are linked varies by platform. Useful for plugin development. --save ......................... Save the information for specified plugin into nodekit.json --shrinkwrap ................... Used together with --save, saves the installed version numbers to nodekit.json --browserify ................... Compile plugin JS at build time using browserify instead of runtime. --force ........................ Forces copying source files from the plugin even if the same file already exists in the target directory. --fetch ........................ Fetches the plugin into the project's node_modules directory. Uses `npm install` to do the fetching remove | [...] ..... Remove plugins with the given IDs/name. --save ......................... Remove the information for specified plugin from nodekit.json --fetch ........................ Removes the plugin from the project's node_modules directory. Uses `npm uninstall` under the hood. list .............................. List currently installed plugins save .............................. Saves the information for all currently added plugins to nodekit.json search [] [...] .......... Search http://plugins.nodekit.io for plugins matching the keywords Syntax : [@]||[#][:subdir] .......................... Plugin id (id of plugin in npm registry or --searchPath) ......................... Major.minor.patch version specifier using semver ....................... Directory containing plugin.xml ............................. Url to a git repository containing a plugin.xml ...................... Commit/tag/branch reference. If none is specified, 'master' is used .......................... Sub-directory to find plugin.xml for the specified plugin. Aliases plugins -> plugin rm -> remove ls -> list Examples nodekit-cli plugin add nodekit-plugin-camera nodekit-plugin-file --save --searchpath ~/plugins nodekit-cli plugin add nodekit-plugin-camera@^2.0.0 --save nodekit-cli plugin add https://github.com/myfork/nodekit-plugin-camera.git#2.1.0 --save nodekit-cli plugin add ../nodekit-plugin-camera --save nodekit-cli plugin add ../nodekit-plugin-camera.tgz --save nodekit-cli plugin rm camera --save nodekit-cli plugin ls