ForkSnowflake (Arctic)Snowflake (Arctic)published Aug 7, 2026seen 2w

Snowflake-Labs/pljs

forked from plv8/pljs

Open original ↗

Captured source

source ↗
published Aug 7, 2026seen 2wcaptured 2whttp 200method plain

Snowflake-Labs/pljs

Description: PLJS - Javascript Language Plugin for PostgreSQL

License: NOASSERTION

Stars: 0

Forks: 0

Open issues: 14

Created: 2026-08-07T06:35:11Z

Pushed: 2026-08-13T13:12:48Z

Default branch: main

Fork: yes

Parent repository: plv8/pljs

Archived: no

README:

PLJS

PLJS is a trusted JavaScript Language Extension for PostgreSQL.

It is compact, lightweight, and fast.

A Discord is available for general questions, discussions, and support. Please check there before opening an issue.

Technology

JavaScript: QuickJS

PostgreSQL: 14+

Current Status

1.0.1 released.

Using PLJS

Once the extension has been installed (see [Building](docs/DEVELOPMENT.md)), you can run:

CREATE EXTENSION pljs;

from your SQL REPL.

You can test that it works by executing:

DO $$ pljs.elog(NOTICE, "Hello, World!") $$ LANGUAGE pljs;

Documentation

  • [Integrations](docs/INTEGRATION.md) - How PLJS integrates with Postgres
  • [Types](docs/TYPES.md) - Type conversion between Postgres and JavaScript
  • [Functions](docs/FUNCTIONS.md) - Functions and functionality provided by PLJS
  • [Configuration](docs/CONFIGURATION.md) - Configuration options
  • [Development](docs/DEVELOPMENT.md) - How to build and develop PLJS
  • [Versioning](docs/VERSIONING.md) - PLJS's versioning policies
  • [Change Log](docs/CHANGELOG.md) - Release change log
  • [Roadmap](docs/ROADMAP.md) - PLJS's development roadmap
  • [Benchmarks](docs/BENCHMARKS.md) - Benchmarks and comparisons with PLV8