Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bradymholt/psqlformat
A PostgreSQL SQL syntax formatter
https://github.com/bradymholt/psqlformat
formatter postgresql sql
Last synced: 2 days ago
JSON representation
A PostgreSQL SQL syntax formatter
- Host: GitHub
- URL: https://github.com/bradymholt/psqlformat
- Owner: bradymholt
- License: mit
- Created: 2018-01-13T23:23:33.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-08-30T19:47:32.000Z (3 months ago)
- Last Synced: 2024-11-08T14:00:19.768Z (10 days ago)
- Topics: formatter, postgresql, sql
- Language: TypeScript
- Homepage:
- Size: 782 KB
- Stars: 7
- Watchers: 2
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# psqlformat [![Build](https://github.com/bradymholt/psqlformat/actions/workflows/build.yml/badge.svg)](https://github.com/bradymholt/psqlformat/actions/workflows/build.yml) [![NPM Package](https://img.shields.io/npm/v/psqlformat.svg)](https://www.npmjs.com/package/psqlformat)
**Would you take a quick second and ⭐️ my repo?**
A PostgreSQL SQL syntax formatter that supports a CLI and library / module interface.
This package is a wrapper for [darold/pgFormatter](https://github.com/darold/pgFormatter) and requires Perl to be available.
## Command Line Interface
To run psqlformat on Node.js, install it first with the following command:
```
npm i -g psqlformat
```To run it, use this command format:
```
psqlformat [options] [file|dir|glob]*
```Examples:
```
psqlformat --write --spaces=2 query.sql
psqlformat --commaEnd --spaces=4 "db/*.sql"
psqlformat --commaEnd --spaces=4 "db/**/*.sql"
```When passing a glob as a parameter, it will be expanded by your shell. If you want to use node glob syntax, you have to quote your parameter (using double quotes if you need it to run in Windows), as follows:
```
psqlformat --noComment "db/**"
```### npx
Bundled with npm starting in version 5.2, the [npx](https://github.com/zkat/npx) tool can be used to run psqlformat without installing it globally. If you have installed psqlformat locally (npm install psqlformat), npx will use the installed version and if you have not installed it, the latest version will be pulled down and used automatically. To use this tool, simply prefix psqlformat with `npx` like this:
```
npx psqlformat --write --spaces=2 query.sql
```### Options
The command line utility has several options. You can view the options by running `psqlformat -h`.
```
Usage: bin.ts [options]By default, output is written to stdout. (use --write option to edit files
in-place)Options:
--help Show help [boolean]
--version Show version number [boolean]
--write Edit files in-place. (Beware!) [boolean]
--spaces Number of spaces to indent the code [number] [default: 4]
--tabs Use tabs instead of spaces (spaces option is ignored)
[boolean]
--maxLength Maximum length of a query [number]
--commaStart Use preceding comma in parameter list [boolean]
--commaBreak In insert statement, add a newline after each comma
[boolean]
--commaEnd Use trailing comma in parameter list
[boolean] [default: true]
--noComment Remove any comments [boolean]
--noGrouping Add a newline between statements in transaction
regroupement [boolean] [default: false]
--functionCase Case to use for function names
[string] [choices: "unchanged", "lowercase", "uppercase", "capitalize"]
[default: "unchanged"]
--keywordCase Case to use for reserved keywords
[string] [choices: "unchanged", "lowercase", "uppercase", "capitalize"]
[default: "uppercase"]
--typeCase Case to use for data type names
[string] [choices: "unchanged", "lowercase", "uppercase", "capitalize"]
[default: "lowercase"]
--formatType Use another formatting type for some statements [boolean]
--wrapLimit Wrap queries at a certain length [number]
--wrapComment When wrapLimit is true, apply formatting to comments
[boolean]
--placeholder Regex to find code that must not be changed [string]
--extraFunction Path to file containing a list of function names [string]
--noSpaceFunction Remove the space character between a function call and the
open parenthesis that follows [boolean]
--configFile Specify a pg_format config file [string]
--perlBinPath The path to the perl executable [string] [default: "perl"]
--pgFormatterPath Path to a custom pg_format version [string]
--keepNewline Preserve empty lines [boolean] [default: false]
--noExtraLine Do not add an extra empty line at end of formatted output
[boolean]
--chunkSize How many files to pass to pgFormatter at once
[number] [default: "25"]
```## Module usage
psqlformat can also be used as a module so that it can be integrated into an existing project. Simply install it locally like this:
```
npm install psqlformat
```Then, require it with `require("psqlformat")` and use either the `formatSql` or `formatFiles` method. Here are the method signatures in TypeScript declaration file format:
```
/**
*
* @param fileOrGlob The file path or glob to use (i.e. /tmp/query.sql or *.sql)
* @param options
*/
export declare function formatFiles(filesOrGlobs: string | string[], editInPlace: boolean, options?: IOptions, log?: (text: string) => void): string;/**
* Format SQL
* @param sqlText The SQL to be formatted
* @param options
*/
export declare function formatSql(sqlText: string, options?: IOptions): string;```
Example usage:
```
const psqlformat = require("psqlformat");// Format SQL text
let formatted = psqlformat.formatSql("select id from people", {
spaces: 2
/* Other available options:
maxLength
commaStart
commaBreak
commaEnd
noComment
functionCase
keywordCase
formatType
placeholder
extraFunction
configFile
perlBinPath
pgFormatterPath
*/
});console.log(formatted);
/* Expected Output:
SELECT
id
FROM
people
*/// Format a file
const path = require("path");
psqlformat.formatFiles(path.resolve(__dirname, "query.sql"), true, {
spaces: 3
});// query.sql file should have been edited in-place.
```### TypeScript
psqlformat is written using TypeScript and has declaration files (`.d.ts`) available so that if you are using TypeScript in your own project,
you can import psqlformat. The entry declaration file, dist/index.d.ts, is specified in package.json file under the "types" field and should automatically be recognized by the TypeScript compiler.