db연결1 [Node.js] node.js에 DB 연결 ( PostgreSql ) 요즘 node로 프로젝트를 진행하면서 공부하고 있는데, db연결 process를 정리해본다. * Express 가 설치되어있는것을 전제로 진행 1. 다음과 같은 명령어를 입력해서 라이브러리를 설치한다. $ npm install pg 2. PostgreSql 커넥터를 만든다. const vals = require('./const.js'); const { Pool, Client } = require('pg'); const client = new Client({ user: postgres, password: 비밀번호, host: 서버 주소, port: 5432, database: db이름 }); function GetTestData() { client.connect(); client.query('SELECT .. 2022. 1. 21. 이전 1 다음