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

deesse

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deesse

Type-safe configuration for DeesseJS.

latest
npmnpm
Version
0.2.7
Version published
Maintainers
1
Created
Source

Deesse

Type-safe configuration for DeesseJS.

Installation

npm install deesse

Usage

import { defineConfig } from 'deesse';
import { drizzle } from 'drizzle-orm/node-postgres';
import { Pool } from 'pg';

export const config = defineConfig({
  database: drizzle({
    client: new Pool({ connectionString: process.env.DATABASE_URL }),
    schema,
  }),
});

Config

database

A Drizzle ORM database instance. Supports PostgreSQL, MySQL, and SQLite.

import { drizzle } from 'drizzle-orm/node-postgres';
import { Pool } from 'pg';

const db = drizzle({
  client: new Pool({ connectionString: process.env.DATABASE_URL }),
  schema,
});

export const config = defineConfig({
  database: db,
});

License

MIT

FAQs

Package last updated on 31 Mar 2026

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