npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pg-compute

v1.0.4

Published

A client-side PostgreSQL extension that lets you execute JavaScript functions on the database side directly from the application logic.

Downloads

37

Readme

Twitter URL

PgCompute: a Client-Side PostgreSQL Extension for Database Functions

PgCompute is a client-side PostgreSQL extension that lets you execute JavaScript functions on the database directly from the application logic.

This means you can create, optimize, and maintain database functions similarly to the rest of the application logic by using your preferred IDE and programming language.

Quick Example

Imagine you have the following function in your Node.js app:

function sum(a, b) {
    let c = a + b;
    return c;
}

Now, suppose you want this function to run on PostgreSQL. Simply pass it to the PgCompute API like this:

const dbClient = // an instance of the node-postgres module's Client or Pool.

// Create and configure a PgCompute instance
let compute = new PgCompute();
await compute.init(dbClient);

// Execute the `sum` function on the database
let result = await compute.run(dbClient, sum, 1, 2);
console.log(result); // prints `3`

By default, PgCompute operates in DeploymentMode.AUTO mode. This mode ensures a JavaScript function is automatically deployed to the database if it doesn't exist. Additionally, if you modify the function's implementation in your source code, PgCompute will handle the redeployment.

Note: PgCompute relies on plv8 extension of PostgreSQL. This extension enables JavaScript support within the database and must be installed prior to using PgCompute.

Getting Started

Follow this guide to create a functional example from scratch.

First, start a PostgreSQL instance with the plv8 extensions. Let's use Docker:

  1. Start a Postgres instance with plv8:

    mkdir ~/postgresql_data/
    
    docker run --name postgresql \
    -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=password \
    -p 5432:5432 \
    -v ~/postgresql_data/:/var/lib/postgresql/data -d sibedge/postgres-plv8
  2. Connect to the database and enable the plv8 extension:

    psql -h 127.0.0.1 -U postgres
    
    create extension plv8;

Next, create a Node.js project:

  1. Initialize the project:
    npm init
  2. Install the pg and pg-compute modules:
    npm install pg
    npm install pg-compute

Next, create the index.js file with the following logic:

  1. Import node-postgres with PgCompute modules and create a database client configuration:
    const { Client, ClientConfig } = require("pg");
    
    const { PgCompute } = require("pg-compute");
    
    const dbEndpoint = {
        host: "localhost",
        port: 5432,
        database: "postgres",
        user: "postgres",
        password: "password"
    }
  2. Add a function that needs to be executed on the Postgres side:
    function sum(a, b) {
        let c = a + b;
        return c;
    }
  3. Add the following snippet to instantiate Client and PgCompute objects and to execute the sum function on Postgres:
    (async () => {
        // Open a database connection
        const dbClient = new Client(dbEndpoint);
        await dbClient.connect();
    
    
        // Create and configure a PgCompute instance
        let compute = new PgCompute();
        await compute.init(dbClient);
    
        let result = await compute.run(dbClient, sum, 1, 2);
        console.log("Result:" + result);
    
        await dbClient.end();
    })();
  4. Run the sample:
    node index.js
    
    // Result:3

Finally, give a try to the auto-redeployment feature:

  1. Change the sum implementation as follows:
    function sum(a, b) {
        return (a + b) * 10;
    }
  2. Restart the app, the function will be redeployed and a new result will be printed out to the terminal:
    node index.js
    
    // Result:30

More Examples

Explore the examples folder for more code samples:

  • basic_samples.js - comes with various small samples that show PgCompute capabilities.
  • savings_interest_sample.js - calculates the monthly compound interest rate on the database end for all savings accounts. This is one of real-world scenarious when you should prefer using database functions.
  • manual_deployment_sample.js - shows how to use the DeploymentMode.MANUAL mode. With that mode, the functions are pre-created manually on the database side but still can be invoked seamlessly from the application logic using PgCompute.

To start any example:

  1. Import all required packages:
    npm i
  2. Start an example:
    node {example_name.js}

Note, the examples include the PgCompute module from sources. If you'd like to run the examples as part of your own project, then import the module form the npm registry:

const { PgCompute, DeploymentMode } = require("pg-compute");

Testing

PgCompute uses Jest and Testcontainers for testing.

So, if you decide to contribute to the project:

  • Make sure to put new tests under the test folder
  • Do a test run after introducing any changes: npm test

Twitter URL