Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/honzahommer/node-mycnf
Reads MySQL options using my_print_defaults command.
https://github.com/honzahommer/node-mycnf
js mysql nodejs npmjs
Last synced: 26 days ago
JSON representation
Reads MySQL options using my_print_defaults command.
- Host: GitHub
- URL: https://github.com/honzahommer/node-mycnf
- Owner: honzahommer
- License: mit
- Created: 2019-02-09T17:32:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T17:13:54.000Z (almost 2 years ago)
- Last Synced: 2024-09-30T13:41:06.982Z (about 1 month ago)
- Topics: js, mysql, nodejs, npmjs
- Language: JavaScript
- Size: 268 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# mycnf
[![npm version](https://img.shields.io/npm/v/mycnf.svg)](https://npmjs.com/mycnf)
[![Build Status](https://img.shields.io/travis/honzahommer/node-mycnf.svg?branch=master)](https://travis-ci.org/honzahommer/node-mycnf)
[![npm downloads](https://img.shields.io/npm/dm/mycnf.svg)](https://npmjs.com/mycnf)
[![License](https://img.shields.io/npm/l/mycnf.svg)](https://github.com/honzahommer/node-mycnf/blob/master/LICENSE) [![Greenkeeper badge](https://badges.greenkeeper.io/honzahommer/node-mycnf.svg)](https://greenkeeper.io/)> Reads MySQL options using [my_print_defaults](https://dev.mysql.com/doc/refman/8.0/en/my-print-defaults.html) command.
## Install
```
npm install mycnf --save
```## Usage
```
const mycnf = require('mycnf');
const config = mycnf();
//> { port: '3306', socket: '/tmp/mysql.sock' }
```## Configuration Options
* `cmnd`: Path to 'my_print_defaults' command. If no `cmnd` is provided, then 'my_print_defaults' command from $PATH is called.
* `file`: Path of config file to read, defaults to reflecting MySQL config (usually ~/.my.cnf).
* `group`: Name of config file group to parse, default to 'client'.## Environment Variables
* `MYCNF_CMND`
* `MYCNF_FILE`
* `MYCNF_GROUP`