1.0.0 • Published 9 years ago

dump-mysql v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
9 years ago

Dump-MySQL

A simple module to download a MYSQL database to the current working directory. This does NOT rely on mysqldump being installed, as it is not used.

Can be used with dump-ftp for a full website backup.

Installation:

npm install dump-mysql --save

Usage:

var dMySQL = require('dump-mysql');

var connection = {
	host: 'dbHost',
	port: 21, //change if required
	user: 'dbUser',
	password: 'dbPassword'
}; 

var dump = new dMySQL(connection).dump();

Release History:

  • 1.0.0 Initial Release
  • 1.0.1 Documentation