mysql-server-manager-node

1.1.2 • Public • Published

MySQL Server Manager for Node

Manage and run MySQL Server in node

Install

npm install mysql-server-manager-node

Usage

  • Download server files in compressed form from this link (Windows)
  • Extract the archive and copy mysql directory to your project root
  • Now use in your project like this sample code.
const MySQLServer = require('mysql-server-manager-node');
const mysql_server = new MySQLServer({
    path: __dirname + '/mysql/bin/mysqld_z.exe'
    port: 3306
});
mysql_server.run(); 

Remember to close the server on your application close like this

mysql_server.close();

Configuration

Name Default Description
path mysqld mysqld file path (See Usage for moreinfo)
port 3306 The port used
script null The "router" script
stdio inherit stdio option passed to the spawned process - https://nodejs.org/api/child_process.html#child_process_options_stdio
env process.env The environment variables passed

Does this Work in Electron?

Yes

Meta

Atiq Samtia– @AtiqSamtiame@atiqsamtia.com

Distributed under the GPL3 license.

https://github.com/atiqsamtia/mysql-server-manager-node

Credits (Thank You)

OSCAROTERO FOR PHP SERVER (Inspiration)

https://github.com/oscarotero/php-server-manager

Readme

Keywords

Package Sidebar

Install

npm i mysql-server-manager-node

Weekly Downloads

1

Version

1.1.2

License

MIT

Unpacked Size

4.07 kB

Total Files

3

Last publish

Collaborators

  • atiqsamtia