[Node.js]외부 실행 모듈 - mysql
■ mysqlnode.js 에서 mysql을 사용하고자 하는 경우 아래의 모듈을 활용한다. - 사이트https://github.com/felixge/node-mysql - npm을 통한 설치npm install mysql - 설명Introduction This is a node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed. Here is an example on how to use it: var mysql = require('mysql');var connection = mysql.createConnection({ host : 'localhost', user : 'me..
WEB & Mobile
2015. 5. 8. 22:08