Guest User

Untitled

a guest
Aug 3rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var express = require('express');
  2.  
  3. var mysql = require('mysql');
  4. var app = express();
  5. var connection = mysql.createConnection({
  6. host: 'localhost',
  7. user: 'your_user',
  8. password: 'some_secret',
  9. database: 'the_app_database'
  10. });
  11.  
  12. connection.connect(function(err) {
  13. if (err) throw err
  14. console.log('You are now connected...')
  15. });
Add Comment
Please, Sign In to add comment