Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): replace standard with neostandard #188

Merged
merged 2 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![CI](https://github.com/fastify/fastify-postgres/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/fastify/fastify-postgres/actions/workflows/ci.yml)
[![NPM version](https://img.shields.io/npm/v/@fastify/postgres.svg?style=flat)](https://www.npmjs.com/package/@fastify/postgres)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://standardjs.com/)
[![neostandard javascript style](https://img.shields.io/badge/code_style-neostandard-brightgreen?style=flat)](https://github.com/neostandard/neostandard)

Fastify PostgreSQL connection plugin; with this, you can share the same PostgreSQL connection pool in every part of your server.
Under the hood [node-postgres](https://github.com/brianc/node-postgres) is used, and the options that you pass to `register` will be passed to the PostgreSQL pool builder.
Expand Down
6 changes: 6 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
'use strict'

module.exports = require('neostandard')({
ignores: require('neostandard').resolveIgnoresFromGitignore(),
ts: true
})
28 changes: 14 additions & 14 deletions examples/typescript/multiple-db/app.ts
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
import fastify from 'fastify';
import fastify from 'fastify'

import { fastifyPostgres } from '../../../index';
import { fastifyPostgres } from '../../../index'

const app = fastify();
const app = fastify()

app.register(fastifyPostgres, {
name: 'sum',
connectionString: 'postgres://user:password@host:port/sub-db',
});
})

app.register(fastifyPostgres, {
name: 'sub',
connectionString: 'postgres://user:password@host:port/sub-db',
});
})

app.get('/calc', async () => {
const sumClient = await app.pg.sum.connect();
const subClient = await app.pg.sub.connect();
const sumClient = await app.pg.sum.connect()
const subClient = await app.pg.sub.connect()

const sumResult = await sumClient.query<{ sum: number }>(
'SELECT 2 + 2 as sum'
);
)
const subResult = await subClient.query<{ sub: number }>(
'SELECT 6 - 3 as sub'
);
)

sumClient.release();
subClient.release();
sumClient.release()
subClient.release()

return {
sum: sumResult.rows,
sub: subResult.rows,
};
});
}
})

export { app };
export { app }
20 changes: 10 additions & 10 deletions examples/typescript/single-db/app.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
import fastify from 'fastify';
import fastify from 'fastify'

import { fastifyPostgres } from '../../../index';
import { fastifyPostgres } from '../../../index'

const app = fastify();
const app = fastify()

app.register(fastifyPostgres, {
connectionString: 'postgres://user:password@host:port/db',
});
})

app.get('/calc', async () => {
const client = await app.pg.connect();
const client = await app.pg.connect()

const sumResult = await client.query<{ sum: number }>('SELECT 2 + 2 as sum');
const sumResult = await client.query<{ sum: number }>('SELECT 2 + 2 as sum')

client.release();
client.release()

return {
sum: sumResult.rows,
};
});
}
})

export { app };
export { app }
46 changes: 23 additions & 23 deletions examples/typescript/transactions/app.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import fastify from 'fastify';
import fastify from 'fastify'

import { fastifyPostgres } from '../../../index';
import { fastifyPostgres } from '../../../index'

const app = fastify();
const app = fastify()

app.register(fastifyPostgres, {
connectionString: 'postgres://user:password@host:port/db',
});
})

app.post('/init-async', async () => {
const createTableQuery = `
Expand All @@ -15,14 +15,14 @@ app.post('/init-async', async () => {
name varchar(80) NOT NULL,
created_at timestamp default NULL
);
`;
`

return app.pg.transact(async (client) => {
const result = await client.query(createTableQuery);
const result = await client.query(createTableQuery)

return result;
});
});
return result
})
})

app.post('/init-cb', (_req, reply) => {
const createTableQuery = `
Expand All @@ -31,22 +31,22 @@ app.post('/init-cb', (_req, reply) => {
name varchar(80) NOT NULL,
created_at timestamp default NULL
);
`;
`

app.pg.transact(
(client) => {
return client.query(createTableQuery);
return client.query(createTableQuery)
},
(error, result) => {
if (error) {
reply.status(500).send(error);
return;
reply.status(500).send(error)
return
}

reply.status(200).send(result);
reply.status(200).send(result)
}
);
});
)
})

app.post('/transact-route', { pg: { transact: true } }, async (req, _reply) => {
const createTableQuery = `
Expand All @@ -55,10 +55,10 @@ app.post('/transact-route', { pg: { transact: true } }, async (req, _reply) => {
name varchar(80) NOT NULL,
created_at timestamp default NULL
);
`;
`

return req.pg?.query(createTableQuery);
});
return req.pg?.query(createTableQuery)
})

app.post(
'/transact-route-alternate',
Expand All @@ -70,10 +70,10 @@ app.post(
name varchar(80) NOT NULL,
created_at timestamp default NULL
);
`;
`

return req.pg?.query(createTableQuery);
return req.pg?.query(createTableQuery)
}
);
)

export { app };
export { app }
24 changes: 12 additions & 12 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FastifyPluginCallback } from 'fastify';
import * as Pg from 'pg';
import { FastifyPluginCallback } from 'fastify'
import * as Pg from 'pg'

declare module 'fastify' {
export interface FastifyInstance {
Expand All @@ -15,7 +15,7 @@ declare module 'fastify' {
}
}

type FastifyPostgres = FastifyPluginCallback<fastifyPostgres.PostgresPluginOptions>;
type FastifyPostgres = FastifyPluginCallback<fastifyPostgres.PostgresPluginOptions>

declare namespace fastifyPostgres {
export type PostgresDb = {
Expand All @@ -24,11 +24,11 @@ declare namespace fastifyPostgres {
query: Pg.Pool['query'];
connect: Pg.Pool['connect'];
transact: typeof transact;
};
}

export type FastifyPostgresRouteOptions = {
transact: boolean | string;
};
}

export type PostgresPluginOptions = {
/**
Expand All @@ -45,20 +45,20 @@ declare namespace fastifyPostgres {
* Instance name of fastify-postgres
*/
name?: string;
} & Pg.PoolConfig;
} & Pg.PoolConfig

export function transact<TResult>(
export function transact<TResult> (
fn: (client: Pg.PoolClient) => Promise<TResult>
): Promise<TResult>;
): Promise<TResult>

export function transact<TResult>(
export function transact<TResult> (
fn: (client: Pg.PoolClient) => Promise<TResult>,
cb: (error: Error | null, result?: TResult) => void
): void;
): void

export const fastifyPostgres: FastifyPostgres
export { fastifyPostgres as default }
}

declare function fastifyPostgres(...params: Parameters<FastifyPostgres>): ReturnType<FastifyPostgres>
export = fastifyPostgres
declare function fastifyPostgres (...params: Parameters<FastifyPostgres>): ReturnType<FastifyPostgres>
export = fastifyPostgres
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"types": "index.d.ts",
"scripts": {
"check-examples": "tsc --build examples/typescript/*",
"lint": "standard",
"lint:fix": "standard --fix",
"lint": "eslint",
"lint:fix": "eslint --fix",
"load-data": "docker exec -it fastify-postgres psql -c 'CREATE TABLE users(id serial PRIMARY KEY, username VARCHAR (50) NOT NULL);' -U postgres -d postgres",
"postgres": "docker run -p 5432:5432 --name fastify-postgres -e POSTGRES_PASSWORD=postgres -d postgres:11-alpine",
"test": "npm run test:unit && npm run test:typescript",
Expand Down Expand Up @@ -71,9 +71,9 @@
"@types/pg": "^8.11.4",
"c8": "^10.1.2",
"fastify": "^5.0.0",
"neostandard": "^0.12.0",
"pg": "^8.11.3",
"pg-native": "^3.0.1",
"standard": "^17.1.0",
"tsd": "^0.31.1",
"typescript": "~5.7.2"
},
Expand Down
12 changes: 6 additions & 6 deletions test/types/imports.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import defaultPluginImport from '../../index';
import {
fastifyPostgres as namedPluginImport,
PostgresDb,
PostgresPluginOptions,
} from '../../index';
/* eslint-disable @typescript-eslint/no-unused-vars */
import defaultPluginImport, {
fastifyPostgres as namedPluginImport,
PostgresDb,
PostgresPluginOptions
} from '../../index'
32 changes: 16 additions & 16 deletions test/types/initialization.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
import fastify from 'fastify';
import * as pg from 'pg';
import { expectAssignable, expectType } from 'tsd';
import fastify from 'fastify'
import * as pg from 'pg'
import { expectAssignable, expectType } from 'tsd'

import fastifyPostgres, { PostgresDb } from '../../index';
import fastifyPostgres, { PostgresDb } from '../../index'

const app = fastify();
const app = fastify()

// Without parameters
app.register(fastifyPostgres);
app.register(fastifyPostgres, {});
app.register(fastifyPostgres)
app.register(fastifyPostgres, {})

// Own pg adapter
app.register(fastifyPostgres, { pg });
app.register(fastifyPostgres, { pg })

// Native libpq wrapper
app.register(fastifyPostgres, { native: true });
app.register(fastifyPostgres, { native: true })

// Multiple databases
app.register(fastifyPostgres, { name: 'users' });
app.register(fastifyPostgres, { name: 'posts' });
app.register(fastifyPostgres, { name: 'users' })
app.register(fastifyPostgres, { name: 'posts' })

// Pool options
app.register(fastifyPostgres, {
Expand All @@ -27,13 +27,13 @@ app.register(fastifyPostgres, {
database: 'mydb',
password: 'secretpassword',
port: 3211,
});
})
app.register(fastifyPostgres, {
connectionString: 'postgres://user:password@host:port/db',
});
})

// Plugin property available
app.after(() => {
expectAssignable<PostgresDb>(app.pg);
expectType<PostgresDb>(app.pg.users);
});
expectAssignable<PostgresDb>(app.pg)
expectType<PostgresDb>(app.pg.users)
})
32 changes: 16 additions & 16 deletions test/types/query.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
import fastify from 'fastify';
import { Client, Pool, PoolClient, QueryResult } from 'pg';
import { expectAssignable, expectType } from 'tsd';
import fastify from 'fastify'
import { Client, Pool, PoolClient, QueryResult } from 'pg'
import { expectAssignable, expectType } from 'tsd'

import fastifyPostgres, { PostgresDb } from '../../index';
import fastifyPostgres, { PostgresDb } from '../../index'

const app = fastify();
const app = fastify()

app.register(fastifyPostgres, {
connectionString: 'postgres://user:password@host:port/db',
});
})

app.get('/calc', async () => {
expectAssignable<PostgresDb>(app.pg);
expectAssignable<PostgresDb>(app.pg)

expectType<Pool>(app.pg.pool);
expectType<Client>(app.pg.Client);
expectType<Pool>(app.pg.pool)
expectType<Client>(app.pg.Client)

const client = await app.pg.connect();
expectType<PoolClient>(client);
const client = await app.pg.connect()
expectType<PoolClient>(client)

const sumResult = await client.query<{ sum: number }>('SELECT 2 + 2 as sum');
expectType<QueryResult<{ sum: number }>>(sumResult);
const sumResult = await client.query<{ sum: number }>('SELECT 2 + 2 as sum')
expectType<QueryResult<{ sum: number }>>(sumResult)

client.release();
client.release()

return {
sum: sumResult.rows,
};
});
}
})
Loading
Loading