Skip to content

Instantly share code, notes, and snippets.

@wykhuh
Created June 30, 2016 02:27
Show Gist options
  • Save wykhuh/898002b6ecfe7ffef5af542357176883 to your computer and use it in GitHub Desktop.
Save wykhuh/898002b6ecfe7ffef5af542357176883 to your computer and use it in GitHub Desktop.
db intro
connect to database
var file = './db/library.db';
var sqlite3 = require('sqlite3').verbose();
var db = new sqlite3.Database(file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment