mirror of
				https://github.com/KevinMidboe/leifsbackend.git
				synced 2025-10-29 17:50:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| require('dotenv').config()
 | |
| 
 | |
| // console.log(process.env)
 | |
| 
 | |
| const { Client } = require('pg')
 | |
| const client = new Client()
 | |
| 
 | |
| client.connect()
 | |
| 
 | |
| client.query('SELECT $1::text as message', ['Hello world!'], (err, res) => {
 | |
|   console.log(res.rows[0].message) // Yello world!
 | |
|   client.end()
 | |
| })
 | |
| 
 |