Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sosedoff/pgweb
Cross-platform client for PostgreSQL databases
https://github.com/sosedoff/pgweb
cross-platform golang pgweb postgresql
Last synced: 5 days ago
JSON representation
Cross-platform client for PostgreSQL databases
- Host: GitHub
- URL: https://github.com/sosedoff/pgweb
- Owner: sosedoff
- License: mit
- Created: 2014-10-09T01:41:32.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-12-21T05:30:38.000Z (22 days ago)
- Last Synced: 2024-12-30T13:26:10.954Z (12 days ago)
- Topics: cross-platform, golang, pgweb, postgresql
- Language: Go
- Homepage: https://sosedoff.github.io/pgweb
- Size: 23.4 MB
- Stars: 8,698
- Watchers: 140
- Forks: 746
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-go - pgweb - Web-based PostgreSQL database browser. (Database / Database Tools)
- awesome-go - sosedoff/pgweb - platform client for PostgreSQL databases|7,854| (Popular)
- favorite-link - PostgreSQL 数据库的跨平台客户端。
- awesome-go-storage - pgweb - A web-based PostgreSQL database browser (Database)
- awesome-ccamel - sosedoff/pgweb - Cross-platform client for PostgreSQL databases (Go)
- awesome-repositories - sosedoff/pgweb - Cross-platform client for PostgreSQL databases (Go)
- awesome-starts - sosedoff/pgweb - Cross-platform client for PostgreSQL databases (Go)
- jimsghstars - sosedoff/pgweb - Cross-platform client for PostgreSQL databases (Go)
- awesome-go - pgweb - Web-based PostgreSQL database browser. Stars:`8.7K`. (Database / Database Tools)
- awesome-go - pgweb - Cross-platform client for PostgreSQL databases - ★ 5370 (Database)
- awesome-go-extra - pgweb - platform client for PostgreSQL databases|7410|615|46|2014-10-09T01:41:32Z|2022-08-19T14:22:16Z| (Generators / Database Tools)
- awesome-go-storage - pgweb - A web-based PostgreSQL database browser (Database)
- awesome - pgweb - Cross-platform client for PostgreSQL databases (Go)
- StarryDivineSky - sosedoff/pgweb
README
# pgweb
Simple web-based and cross platform PostgreSQL database explorer.
[![Release](https://img.shields.io/github/release/sosedoff/pgweb.svg?label=Release)](https://github.com/sosedoff/pgweb/releases)
[![Linux Build](https://github.com/sosedoff/pgweb/actions/workflows/checks.yml/badge.svg)](https://github.com/sosedoff/pgweb/actions?query=branch%3Amain)
[![Go Report Card](https://goreportcard.com/badge/github.com/sosedoff/pgweb)](https://goreportcard.com/report/github.com/sosedoff/pgweb)
[![GoDoc](https://godoc.org/github.com/sosedoff/pgweb?status.svg)](https://godoc.org/github.com/sosedoff/pgweb)
[![Docker Pulls](https://img.shields.io/docker/pulls/sosedoff/pgweb.svg)](https://hub.docker.com/r/sosedoff/pgweb/)## Overview
Pgweb is a web-based database explorer for PostgreSQL, written in Go, and works
on Mac, Linux and Windows machines. Distributed as a simple binary with zero dependencies.
Very easy to use and packs just the right amount of features.[See application screenshots](SCREENS.md)
## Features
- Cross-platform: Mac/Linux/Windows (64bit).
- Simple installation (distributed as a single binary).
- Zero dependencies.
- Works with PostgreSQL 9.1+.
- Supports native SSH tunnels.
- Multiple database sessions.
- Execute and analyze custom SQL queries.
- Table and query data export to CSV/JSON/XML.
- Query history.
- Server bookmarks.Visit [WIKI](https://github.com/sosedoff/pgweb/wiki) for more details.
## Demo
Visit https://pgweb-demo.fly.dev/ to see Pgweb in action.
## Installation
- [Precompiled binaries](https://github.com/sosedoff/pgweb/releases) for supported operating systems are available.
- [More installation options](https://github.com/sosedoff/pgweb/wiki/Installation)## Usage
Start server:
```
pgweb
```You can also provide connection flags:
```
pgweb --host localhost --user myuser --db mydb
```Connection URL scheme is also supported:
```
pgweb --url postgres://user:password@host:port/database?sslmode=[mode]
pgweb --url "postgres:///database?host=/absolute/path/to/unix/socket/dir"
```### Multiple database sessions
To enable multiple database sessions in pgweb, start the server with:
```
pgweb --sessions
```Or set environment variable:
```
PGWEB_SESSIONS=1 pgweb
```## Testing
Before running tests, make sure you have PostgreSQL server running on `localhost:5432`
interface. Also, you must have `postgres` user that could create new databases
in your local environment. Pgweb server should not be running at the same time.Execute test suite:
```
make test
```If you're using Docker locally, you might also run pgweb test suite against
all supported PostgreSQL version with a single command:```
make test-all
```## Contribute
- Fork this repository
- Create a new feature branch for a new functionality or bugfix
- Commit your changes
- Execute test suite
- Push your code and open a new pull request
- Use [issues](https://github.com/sosedoff/pgweb/issues) for any questions
- Check [wiki](https://github.com/sosedoff/pgweb/wiki) for extra documentation## License
The MIT License (MIT). See [LICENSE](LICENSE) file for more details.