0.0.4 • Published 5 years ago

node-wp-cli v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

node-wp-cli

npm version dependencies Status

A nodejs wrapper for WP-CLI.

You just need to install this NPM package and WP-CLI will install automatically to your computer without doing any additional step.

Installation

npm install node-wp-cli

Usage

var wpCli = require('node-wp-cli');

wpCli.call('core download', { path: 'myWPSite' }, function(err, resp) {
    if (err) throw err;

    console.log(resp.message);
})

Click here to see all the WP-CLI commands.

Credits

  • All the contributors of WP-CLI