UNPKG

h-orm

Version:

H-orm is a mysql orm for nodejs

16 lines (14 loc) 412 B
const mysql = require('../../lib/mysql/index') async function main() { await mysql.init({ host : '127.0.0.1', port : '3306', user : 'root', password : 'root', database : 'test', debug : true }) const res = await mysql.query(`select * from student`) console.log(res) } main()