No description
Find a file
dependabot[bot] 17ad8a4a2b
Bump qs and express
Bumps [qs](https://github.com/ljharb/qs) to 6.11.0 and updates ancestor dependency [express](https://github.com/expressjs/express). These dependencies need to be updated together.


Updates `qs` from 6.7.0 to 6.11.0
- [Release notes](https://github.com/ljharb/qs/releases)
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ljharb/qs/compare/v6.7.0...v6.11.0)

Updates `express` from 4.17.1 to 4.18.2
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.17.1...4.18.2)

---
updated-dependencies:
- dependency-name: qs
  dependency-type: indirect
- dependency-name: express
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-07 14:12:29 +00:00
static longer default 2020-04-15 09:30:44 +02:00
.gitignore Basic version 2020-04-13 15:08:37 +02:00
index.js Show indexes 2020-04-14 19:01:25 +02:00
package-lock.json Bump qs and express 2022-12-07 14:12:29 +00:00
package.json Bump qs and express 2022-12-07 14:12:29 +00:00
README.md Add readme about setting up and running mysql exporter 2020-04-14 12:36:49 +02:00

MySQL exporter

MySQL exporter is a simple tool for generating data dictionaries from database.

Configuring

The exporter uses simple config.json, in the current workind directory. Just create config.json and use the following format:

{
    "mysql": {
        "host": "localhost",
        "user": "root",
        "password": "",
        "database": "mysql"
    },
    "fields_ignored": []
}

Fields ignored is an array of fields which shouldn't be in the report. It's case insensitive.

Running

If you have node and git installed on your system, simply create the config and run npx github:danbulant/mysqlExporter.

Saving and sharing reports

On the newly opened page (opened by running), press ctrl+s and save the HTML file. That file is fully self-contained, even for offline use, so you can share the report with others.