1.0.0 • Published 7 years ago

wp-here v1.0.0

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

wp-here

Download and unpack the latest WordPress installation right into the directory where you need it!

Installation

> npm install https://github.com/dkfiresky-wp/wp-here.git

Usage

const wphere = require( 'wp-here' );

wphere( '/home/wp/www/', ( error, dirpath ) => {
  if ( null !== error) throw error;
  console.log( 'WordPress downloaded here: %s', dirpath );
} );