Skip to content

Commit d4dd635

Browse files
authored
docs: change references from neon.tech to neon.com (#174)
## Description This PR aims to change all the `neon.tech` references to `neon.com` domain.
1 parent 20240e0 commit d4dd635

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.2 (2025-09-30)
2+
3+
Update neon.tech references to neon.com domain.
4+
15
## 1.0.1 (2025-06-06)
26

37
The package now prints a security warning to the console when a connection is made in a web browser. This behaviour can be suppressed with a new configuration option: `disableWarningInBrowsers`. There are a few other very minor fixes.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# @neondatabase/serverless
22

3-
`@neondatabase/serverless` is [Neon](https://neon.tech)'s PostgreSQL driver for JavaScript and TypeScript. It's:
3+
`@neondatabase/serverless` is [Neon](https://neon.com)'s PostgreSQL driver for JavaScript and TypeScript. It's:
44

5-
- **Low-latency**, thanks to [message pipelining](https://neon.tech/blog/quicker-serverless-postgres) and other optimizations
5+
- **Low-latency**, thanks to [message pipelining](https://neon.com/blog/quicker-serverless-postgres) and other optimizations
66
- **Ideal for serverless/edge** deployment, using https and WebSockets in place of TCP
77
- **A drop-in replacement** for [node-postgres](https://node-postgres.com/), aka [`pg`](https://www.npmjs.com/package/pg) (on which it's based)
88

@@ -55,7 +55,7 @@ const [post] = await sql`SELECT * FROM posts WHERE id = ${postId}`;
5555
// `post` is now { id: 12, title: 'My post', ... } (or undefined)
5656
```
5757

58-
Note: interpolating `${postId}` here is [safe from SQL injection](https://neon.tech/blog/sql-template-tags).
58+
Note: interpolating `${postId}` here is [safe from SQL injection](https://neon.com/blog/sql-template-tags).
5959

6060
There are [more details and options for `neon()` function](CONFIG.md).
6161

@@ -140,7 +140,7 @@ Queries using `Pool` and `Client` are carried by WebSockets. There are **two key
140140

141141
That means `Pool` or `Client` objects must be connected, used and closed **within a single request handler**. Don't create them outside a request handler; don't create them in one handler and try to reuse them in another; and to avoid exhausting available connections, don't forget to close them.
142142

143-
Note: on Cloudflare Workers, [consider using Cloudflare Hyperdrive](https://neon.tech/blog/hyperdrive-neon-faq) instead of this driver.
143+
Note: on Cloudflare Workers, [consider using Cloudflare Hyperdrive](https://neon.com/blog/hyperdrive-neon-faq) instead of this driver.
144144

145145
These points are demonstrated in the examples below.
146146

@@ -300,4 +300,4 @@ This code is released under the [MIT license](LICENSE).
300300

301301
## Feedback and support
302302

303-
Please visit [Neon Community](https://community.neon.tech/) or [Support](https://neon.tech/docs/introduction/support).
303+
Please visit [Neon Community](https://community.neon.tech/) or [Support](https://neon.com/docs/introduction/support).

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "@neondatabase/serverless",
33
"version": "1.0.1",
44
"author": "Neon",
5-
"description": "node-postgres for serverless environments from neon.tech",
5+
"description": "node-postgres for serverless environments from neon.com",
66
"exports": {
77
"require": "./index.js",
88
"import": "./index.mjs"
99
},
1010
"license": "MIT",
11-
"homepage": "https://neon.tech",
11+
"homepage": "https://neon.com",
1212
"repository": {
1313
"type": "git",
1414
"url": "git+https://github.com/neondatabase/serverless.git"

0 commit comments

Comments
 (0)