Skip to content

Instantly share code, notes, and snippets.

@tleen
Created September 6, 2013 23:12
Show Gist options
  • Save tleen/6471233 to your computer and use it in GitHub Desktop.
Save tleen/6471233 to your computer and use it in GitHub Desktop.
node mysql socket connect
var db = mysql.createConnection({
user : 'dbuser',
socketPath : '/tmp/mysql.sock', //wherever the mysql socket is
database : 'dbname'
});
db.connect();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment