Instagres provided instant Postgres connection strings via Neon, no signup required, for local development. Version 1.1.8 is the last release. The package is deprecated and replaced by 'neondb'. Key differentiator was zero-setup ephemeral databases without authentication. Offers both CLI and library usage, with ESM and CJS support. No longer maintained; users should migrate to 'neondb'.
npm install instagresNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to retrieve an instant Postgres connection string using the instagres function with a required source parameter.
Replace instagres with neondb.
Use const { default: instagres } = require('instagres');Always pass the source object: instagres({ source: 'my-project' })Use 'npm install instagres' for library usage.
Use import instagres from 'npm:instagres@^1.1.4';
Use const { default: instagres } = require('instagres');Call instagres with an object containing source: instagres({ source: 'my-project' })