pgadmin に "mydatabase" という名前のデータベースがあり、テーブル名は "mytable" です。で実行されhttp://127.0.0.1:33859/browser/
ます。postgraphile を使用して接続しようとしていました。ここにコードがあります
const express = require("express");
const { postgraphile } = require("postgraphile");
const app = express();
app.use(postgraphile("postgres://postgres:postgres@localhost:33859/mydatabase -s public"));
app.listen(3000);
スーパーユーザーのユーザー名は「postgres」、パスワードは「postgres」です。データベースは、パスワード「1234」を持つ「test」という名前のユーザーによって所有されています。ノードでスクリプトを実行した後、ターミナルにエラーはありません。ポート 3000 にアクセスすると、 が表示されますCannot GET /
。これについて何か助けはありますか?