Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naturalcycles/mysql-lib
MySQL client implementing CommonDB interface
https://github.com/naturalcycles/mysql-lib
commondb db mysql
Last synced: about 1 month ago
JSON representation
MySQL client implementing CommonDB interface
- Host: GitHub
- URL: https://github.com/naturalcycles/mysql-lib
- Owner: NaturalCycles
- Created: 2019-06-03T00:06:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T08:30:20.000Z (about 2 months ago)
- Last Synced: 2024-11-09T09:26:51.716Z (about 2 months ago)
- Topics: commondb, db, mysql
- Language: TypeScript
- Size: 1.61 MB
- Stars: 1
- Watchers: 14
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
## @naturalcycles/mysql-lib
> MySQL client implementing CommonDB interface
[![npm](https://img.shields.io/npm/v/@naturalcycles/mysql-lib/latest.svg)](https://www.npmjs.com/package/@naturalcycles/mysql-lib)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)# Quick start
todo
# Develop
Install MySQL server+client on Mac:
```shell
brew install mysql
# start
mysql.server start
# secure
mysql_secure_installation
# connect
mysql -uroot
# Default options are read from the following files in the given order:
# /etc/my.cnf /etc/mysql/my.cnf /opt/homebrew/etc/my.cnf ~/.my.cnf```