Created
June 23, 2019 11:52
-
-
Save mannharleen/f7b767fa4cc3846fc20f95819d2cc8c5 to your computer and use it in GitHub Desktop.
Setting up knex - the very basics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// $ knex init | |
const nodeEnv = process.env.NODE_ENV || 'development' | |
const knexfileConfig = require('./knexfile')[nodeEnv] | |
const es = require('event-stream') | |
var knex = require('knex')(knexfileConfig); | |
// non stream usage | |
knex.raw('select * from genres') | |
.then(r => console.log(r)) | |
.finally(() =>knex.destroy()); | |
// stream like usage | |
s = knex.raw('select * from genres').stream() | |
s.pipe(es.mapSync( ch => console.log(ch.Name))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Update with your config settings. | |
module.exports = { | |
development: { | |
client: 'sqlite3', | |
connection: { | |
filename: './chinook.db' //dev.sqlite3 | |
}, | |
useNullAsDefault: true | |
}, | |
staging: { | |
client: 'postgresql', | |
connection: { | |
database: 'my_db', | |
user: 'username', | |
password: 'password' | |
}, | |
pool: { | |
min: 2, | |
max: 10 | |
}, | |
migrations: { | |
tableName: 'knex_migrations' | |
} | |
}, | |
production: { | |
client: 'postgresql', | |
connection: { | |
database: 'my_db', | |
user: 'username', | |
password: 'password' | |
}, | |
pool: { | |
min: 2, | |
max: 10 | |
}, | |
migrations: { | |
tableName: 'knex_migrations' | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment