New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

coba-genkit

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coba-genkit

A Genkit flow that connects to a PostgreSQL database as an example.

latest
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Genkit PostgreSQL Plugin

This Genkit plugin provides a flow for connecting to a PostgreSQL database.

Installation

npm install genkitx-plugin-postgres

Usage

import { configureGenkit } from '@genkit-ai/core';
import { postgresPlugin } from 'genkitx-plugin-postgres';

export default configureGenkit({
  plugins: [
    postgresPlugin({
      user: 'your_username',
      host: 'your_host',
      database: 'your_database',
      password: 'your_password',
      port: 5432,
    }),
  ],
  logLevel: 'debug',
  enableTracingAndMetrics: true,
});

Keywords

genkit

FAQs

Package last updated on 19 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts