连接到 PostgreSQL

使用 PostgreSQLnpm 模块。

从 npm 安装依赖项

npm  install pg --save

现在你必须创建一个 PostgreSQL 连接,稍后你可以查询该连接。

假设你是 Database_Name = students,Host = localhost 和 DB_User = postgres

var pg = require("pg")
var connectionString = "pg://postgres:postgres@localhost:5432/students";
var client = new pg.Client(connectionString);
client.connect();