Skip to content

Instantly share code, notes, and snippets.

View knlykos's full-sized avatar
🎯
Focusing

Nefi López García knlykos

🎯
Focusing
  • San Diego, CA
  • 12:56 (UTC -07:00)
View GitHub Profile
@knlykos
knlykos / listener.ts
Last active February 19, 2020 18:39
realtime trigger postgresql
import { Client, Pool } from 'pg';
const client = new Client({
user: 'postgres',
password: '123456',
database: 'test',
port: 5432,
host: 'localhost'
});