Using Knex to Connect to PostgreSQL
We can use Knex to connect to PostgreSQL; just install the Node-postgres library.
失くすものさえない今が強くなるチャンスよ
We can use Knex to connect to PostgreSQL; just install the Node-postgres library.
If we want to use Microservice architecture, we will build Nginx, Express, PostgreSQL images first, and then use Docker Compose to run Nginx, Express, PostgreSQL at once.
If we want to use Express DELETE to delete data from PostgreSQL, we can use Knex and Node-postgres to connect.
If we want to use Express PUT to edit data to PostgreSQL, we can use Knex and Node-postgres to connect.
If we want to use Express POST to add data to PostgreSQL, we can use Knex and Node-postgres to connect.
If we want to use Express GET to return data from PostgreSQL, we can use Knex and Node-postgres to connect.
可將 DELETE
Statement 直接傳入 Node-postgres,並且支援 Parameter 方式避免湊字串而造成 SQL Injection。
可將 UPDATE
Statement 直接傳入 Node-postgres,並且支援 Parameter 方式避免湊字串而造成 SQL Injection。
可將 INSERT
Statement 直接傳入 Node-postgres,並且支援 Parameter 方式避免湊字串而造成 SQL Injection。
可將 SELECT
Statement 直接傳入 Node-postgres,並且支援 Parameter 方式避免湊字串而造成 SQL Injection。
若要在 macOS 使用 PostgreSQL,最簡單的方式就是使用 Docker。只要在 docker-compose.yml
描述好 PostgreSQL 設定, docker compose up -d
即可快速啟動。