dump-mysql

1.0.0 • Public • Published

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

Package Sidebar

Install

npm i dump-mysql

Weekly Downloads

1

Version

1.0.0

License

ISC

Last publish

Collaborators

  • henrygeddes