Skip to content

Commit

Permalink
chore: updated ci urls
Browse files Browse the repository at this point in the history
  • Loading branch information
erayhanoglu committed Sep 14, 2024
1 parent 7458917 commit f8ccd6f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 71 deletions.
63 changes: 0 additions & 63 deletions .circleci/config.yml

This file was deleted.

16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![CircleCI][circleci-image]][circleci-url]
[![CI Tests][ci-test-image]][ci-test-url]
[![Test Coverage][coveralls-image]][coveralls-url]


PostgreJS is a enterprise-level PostgreSQL client for Node.js.
PostgreJS is an enterprise-level PostgreSQL client for Node.js.
It is designed to provide a robust and efficient interface to PostgreSQL databases,
ensuring high performance and reliability for enterprise applications.
Written entirely in TypeScript, it leverages modern JavaScript features to deliver a seamless development experience.
Expand Down Expand Up @@ -63,7 +63,7 @@ Please read :small_orange_diamond: [DOCUMENTATION](https://postgrejs.panates.com
### Establish a single connection, execute a simple query

```ts
import {Connection} from 'postgrejs';
import { Connection } from 'postgrejs';
// Create connection
const connection = new Connection('postgres://localhost');
// Connect to database server
Expand All @@ -82,7 +82,7 @@ await connection.close();

### Establish a pooled connection, create a cursor
```ts
import {Pool} from 'postgrejs';
import { Pool } from 'postgrejs';

// Create connection pool
const db = new Pool({
Expand Down Expand Up @@ -114,7 +114,7 @@ await db.close();

### Using prepared statements
```ts
import {DataTypeOIDs} from 'postgrejs';
import { DataTypeOIDs } from 'postgrejs';

// .....
const statement = await connection.prepare(
Expand Down Expand Up @@ -196,12 +196,12 @@ When you open an issue please provide version of NodeJS and PostgreSQL server.


## License
postgrejs is available under [MIT](LICENSE) license.
PostgreJS is available under [MIT](LICENSE) license.

[npm-image]: https://img.shields.io/npm/v/postgrejs
[npm-url]: https://npmjs.org/package/postgrejs
[circleci-image]: https://circleci.com/gh/panates/postgrejs/tree/master.svg?style=shield
[circleci-url]: https://circleci.com/gh/panates/postgrejs/tree/master
[ci-test-image]: https://github.com/panates/postgrejs/actions/workflows/test.yml/badge.svg
[ci-test-url]: https://github.com/panates/postgrejs/actions/workflows/test.yml
[coveralls-image]: https://img.shields.io/coveralls/panates/postgrejs/master.svg
[coveralls-url]: https://coveralls.io/r/panates/postgrejs
[downloads-image]: https://img.shields.io/npm/dm/postgrejs.svg
Expand Down

0 comments on commit f8ccd6f

Please sign in to comment.