mysql-markdown
v0.1.1
Published
[![GitHub stars](https://img.shields.io/github/stars/songdaochuanshu/mysql-markdown)](https://github.com/songdaochuanshu/mysql-markdown/stargazers) [![GitHub license](https://img.shields.io/github/license/songdaochuanshu/mysql-markdown)](https://github.co
Downloads
10
Readme
mysql-markdown
Illustrate
This plugin is used to generate a MarkDown structure document for the MySQL database table.
Installation
npm install mysql-markdown --save
or
yarn add mysql-markdown
DEMO
// import { MySQLMarkdown } from 'mysql-markdown'
const { MySQLMarkdown } = require('mysql-markdown');
let template = new MySQLMarkdown({
database: 'template',
user: 'template',
password: '123456',
host: 'localhost',
port: 3306,
output: './',
fileName: 'template',
});
template.build();