New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

postgresql-http-server

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postgresql-http-server

PostgreSQL HTTP API Server

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

PostgreSQL HTTP API Server

Attempt to implement something like the proposal at http://wiki.postgresql.org/wiki/HTTP_API

DISCLAIMER: Experimental work at this time.

Installing

NOTE: Requires node.js

# sudo npm install postgresql-http-server -g

Usage

# postgresql-http-server --help
PostgreSQL HTTP API Server

Options:
  --port      HTTP Server port     [required]  [default: 3000]
  --dbhost    PostgreSQL host      [required]  [default: "localhost"]
  --dbport    PostgreSQL port      [required]  [default: 5432]
  --database  PostgreSQL database  [required]  [default: <user>]
  --user      PostgreSQL username  [required]  [default: <user>]
  --password  PostgreSQL password
  --cors      Enable CORS support  [boolean]
  --help      Show this message

API Usage

The API is discoverable which means you can access the root resource at / and follow links to subresources from there but lets say you have a database named testdb with a table named testtable in the public schema you can then do the following operations:

Retrieve (GET) or update (PUT) a single row at:
/db/testdb/schemas/public/tables/testtable/rows/id

Retrieve rows (GET), update rows (PUT) or create a new row (POST) at:
/db/testdb/schemas/public/tables/testtable/rows

The above resources accepts URL encoded parameters where, limit and offset where applicable. Example:

GET a maximum of 10 rows where cost>100 at:
/db/testdb/schemas/public/tables/testtable/rows?where=cost%3E100&limit=10

The default and currently the only dataformat is JSON. POSTing or PUTing expects a single JSON object with properties corresponding to column names.

TODOs

  • Use real primary key (current single row operations assume a primary key named id)
  • Optionally use authenticated user/password to connect to DB
  • Handle ORDER BY via orderby param
  • Handle PostGIS data
  • Allow raw SQL queries?
  • Handle DDL stuff?

License

The MIT License (MIT)

Copyright (c) 2012 Björn Harrtell

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 09 Jul 2012

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc