
Security News
Feross on TBPN: Socket's Series C and the State of Software Supply Chain Security
Feross Aboukhadijeh joins TBPN to discuss Socket's $60M Series C, 500%+ ARR growth, AI's impact on open source, and the rise in supply chain attacks.
@electric-sql/pglite-socket
Advanced tools
A socket implementation for PGlite enabling remote connections. This package is a simple wrapper around the net module to allow PGlite to be used as a PostgreSQL server.
There are two main components to this package:
PGLiteSocketServer - A TCP server that allows PostgreSQL clients to connect to a PGlite database instance.PGLiteSocketHandler - A low-level handler for a single socket connection to PGlite. This class handles the raw protocol communication between a socket and PGlite, and can be used to create a custom server.The package also includes a CLI for quickly starting a PGlite socket server.
Note: As PGlite is a single-connection database, it is not possible to have multiple simultaneous connections open. This means that the socket server will only support a single client connection at a time. While a PGLiteSocketServer or PGLiteSocketHandler are attached to a PGlite instance they hold an exclusive lock preventing any other connections, or queries on the PGlite instance.
npm install @electric-sql/pglite-socket
# or
yarn add @electric-sql/pglite-socket
# or
pnpm add @electric-sql/pglite-socket
import { PGlite } from '@electric-sql/pglite'
import { PGLiteSocketServer } from '@electric-sql/pglite-socket'
// Create a PGlite instance
const db = await PGlite.create()
// Create and start a socket server
const server = new PGLiteSocketServer({
db,
port: 5432,
host: '127.0.0.1',
})
await server.start()
console.log('Server started on 127.0.0.1:5432')
// Handle graceful shutdown
process.on('SIGINT', async () => {
await server.stop()
await db.close()
console.log('Server stopped and database closed')
process.exit(0)
})
Creates a TCP server that allows PostgreSQL clients to connect to a PGlite database instance.
db: PGlite - The PGlite database instanceport?: number - The port to listen on (default: 5432)host?: string - The host to bind to (default: 127.0.0.1)inspect?: boolean - Print the incoming and outgoing data to the console (default: false)start(): Promise<void> - Start the socket serverstop(): Promise<void> - Stop the socket serverlistening - Emitted when the server starts listeningconnection - Emitted when a client connectserror - Emitted when an error occursclose - Emitted when the server is closedLow-level handler for a single socket connection to PGlite. This class handles the raw protocol communication between a socket and PGlite.
db: PGlite - The PGlite database instancecloseOnDetach?: boolean - Whether to close the socket when detached (default: false)inspect?: boolean - Print the incoming and outgoing data to the console in hex and ascii (default: false)attach(socket: Socket): Promise<PGLiteSocketHandler> - Attach a socket to this handlerdetach(close?: boolean): PGLiteSocketHandler - Detach the current socket from this handlerisAttached: boolean - Check if a socket is currently attacheddata - Emitted when data is processed through the handlererror - Emitted when an error occursclose - Emitted when the socket is closedimport { PGlite } from '@electric-sql/pglite'
import { PGLiteSocketHandler } from '@electric-sql/pglite-socket'
import { createServer, Socket } from 'net'
// Create a PGlite instance
const db = await PGlite.create()
// Create a handler
const handler = new PGLiteSocketHandler({
db,
closeOnDetach: true,
inspect: false,
})
// Create a server that uses the handler
const server = createServer(async (socket: Socket) => {
try {
await handler.attach(socket)
console.log('Client connected')
} catch (err) {
console.error('Error attaching socket', err)
socket.end()
}
})
server.listen(5432, '127.0.0.1')
See the examples directory for more usage examples.
This package provides a command-line interface for quickly starting a PGlite socket server.
# Install globally
npm install -g @electric-sql/pglite-socket
# Start a server with default settings (in-memory database, port 5432)
pglite-server
# Start a server with custom options
pglite-server --db=/path/to/database --port=5433 --host=0.0.0.0 --debug=1
# Using short options
pglite-server -d /path/to/database -p 5433 -h 0.0.0.0 -v 1
# Show help
pglite-server --help
-d, --db=PATH - Database path (default: memory://)-p, --port=PORT - Port to listen on (default: 5432)-h, --host=HOST - Host to bind to (default: 127.0.0.1)-v, --debug=LEVEL - Debug level 0-5 (default: 0)You can add the CLI to your package.json scripts for convenient execution:
{
"scripts": {
"db:start": "pglite-server --db=./data/mydb --port=5433",
"db:dev": "pglite-server --db=memory:// --debug=1"
}
}
Then run with:
npm run db:start
# or
npm run db:dev
Once the server is running, you can connect to it using any PostgreSQL client:
psql -h localhost -p 5432 -d template1
// Using node-postgres
import pg from 'pg'
const client = new pg.Client({
host: 'localhost',
port: 5432,
database: 'template1'
})
await client.connect()
// Using postgres.js
import postgres from 'postgres'
const sql = postgres({
host: 'localhost',
port: 5432,
database: 'template1'
})
--db=memory://) is fastest but data won't persist after the server is stopped.--db=./data/mydb).--debug=1 or higher), additional protocol information will be displayed in the console.0.0.0.0 with --host=0.0.0.0.Apache 2.0
FAQs
A socket implementation for PGlite enabling remote connections
The npm package @electric-sql/pglite-socket receives a total of 3,470,914 weekly downloads. As such, @electric-sql/pglite-socket popularity was classified as popular.
We found that @electric-sql/pglite-socket demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Feross Aboukhadijeh joins TBPN to discuss Socket's $60M Series C, 500%+ ARR growth, AI's impact on open source, and the rise in supply chain attacks.

Security News
OSV withdrew 157 OSV malware reports after automated false positives incorrectly flagged trusted npm and PyPI packages, sending bad records into tools that rely on OSV data.

Research
/Security News
TrapDoor crypto stealer hits 36 malicious packages across npm, PyPI, and Crates.io, targeting crypto, DeFi, AI, and security developers.