0.1.4 • Published 12 hours ago

@winglibs/postgres v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
12 hours ago

postgres

This library allows using postgres with Wing.

Prerequisites

Installation

Use npm to install this library:

npm i @winglibs/postgres

Bring it

bring cloud;
bring postgres;

let db = new postgres.Database(
  name: "mydb",
  pgVersion: 15,
);

let api = new cloud.Api();

api.get("/users", inflight (req) => {
  let users = db.query("select * from users");
  return {
    status: 200,
    body: Json.stringify(users),
  };
});

You can find connection information in db.connection:

  • host - the host to connect to
  • port - the external port to use (a token that will resolve at runtime)
  • user - user name
  • password - password
  • database - the database name
  • ssl - use SSL or not

sim

When executed in the Wing Simulator, postgres is run within a local Docker container.

Connecting to Postgres from sim.Container

If you are connecting from a sim.Container, you should use host.docker.internal as the host in order to be able to access the host network:

Example:

new sim.Container(
  // ...
  env: {
    DB_HOST: "host.docker.internal",
    DB_PORT: db.connection.port
  }
)

Reference Existing Postgres Database

If you want to import a reference to an existing postgres database, you can use the DatabaseRef class:

bring postgres;

let db = new postgres.DatabaseRef() as "somedatabase";


new cloud.Function(inflight() => {
  let users = db.query("select * from users");
});

This will automatically create a secret resource that is required for the database connection. To seed this secret, use the secrets subcommand:

❯ wing secrets main.w
1 secret(s) found

? Enter the secret value for connectionString_somedatabase: [input is hidden] 

When referencing an existing database for the tf-aws target you will also need to specify VPC information in your wing.toml file (unless your database is publicly accessible). Or you will see an warning like this:

WARNING: Unless your database is accessible from the public internet, you must provide vpc info under `tf-aws` in your wing.toml file
For more info see: https://www.winglang.io/docs/platforms/tf-aws#parameters

tf-aws

On the tf-aws target, the postgres database can be created and hosted by either AWS RDS or Neon. To configure which one to use, simply specify the parameter postgresEngine in your wing.toml file:

postgresEngine = "rds" # or "neon"

Neon Setup

Neon has a free tier that can be used for personal projects and prototyping.

Database credentials are securely stored on AWS Secrets Manager (via cloud.Secret).

When you deploy Terraform that uses the Database class, you will need to have the NEON_API_KEY environment variable set with an API key.

Roadmap

  • Support tf-aws platform using Neon
  • Support sim platform
  • Make all Neon databases share a Neon project to stay within the free tier
  • Reuse postgres client across multiple queries by requiring users to call connect() / end() methods
  • Initialize secret value through cloud.Secret APIs - https://github.com/winglang/wing/issues/2726
  • Support parameterized queries for preventing SQL injection
  • Customize type parser for most popular postgres types / conversions to Wing types
  • Have query() return both rows and a list of field names
  • More unit tests and examples

License

Licensed under the MIT License.

0.1.4

12 hours ago

0.1.3

4 days ago

0.1.2

13 days ago

0.1.1

17 days ago

0.1.0

1 month ago

0.0.10

1 month ago

0.0.11

1 month ago

0.0.9

2 months ago

0.0.8

2 months ago

0.0.7

4 months ago

0.0.6

4 months ago

0.0.5

4 months ago

0.0.4

5 months ago

0.0.3

6 months ago

0.0.2

6 months ago

0.0.1

6 months ago