A systemic pg component
constSystem=require('systemic')constpostgres=require('systemic-pg')newSystem().configure({postgres: {host: 'localhost',database: 'example'onConnect: ["SET client_min_messages = WARNING","SET search_path = custom,public"]}}).add('logger',console).add('postgres',postgres()).dependsOn('config','logger').start((err,components)=>{// Do stuff with components.pg})systemic-pg relies on the underlying pg library, which uses native promises and is therefore incompatible with node 0.12 and below. You can monkey patch Promise or use an alternative promise implementation by following these instructions.