UNPKG

mysql-async-wrapper

Version:

This is a Wrapper class, which helps to get rid of callbacks of mysql package functions and provides a way to use them in async await (es7) syntax, Below Examples uses express framework in both (import/export syntax and commonJs syntax)

22 lines 475 B
{ "compilerOptions": { "module": "commonjs", "esModuleInterop": true, "target": "es6", "experimentalDecorators": true, "noImplicitAny": true, "moduleResolution": "node", "sourceMap": true, "declaration": true, "outDir": "./dist", "baseUrl": ".", "paths": { "*": [ "node_modules/*" ] } }, "include": [ "lib/**/*" ] }