mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* Update docs - start * Add logo & discord * Start updating docs for esm style imports * Update docs with logo & info on pooling * Update more import statements --------- Co-authored-by: Brian Carlson <brian.carlson@getcruise.com>
21 lines
591 B
Markdown
21 lines
591 B
Markdown
# node-postgres docs website
|
|
|
|
This is the documentation for node-postgres which is currently hosted at [https://node-postgres.com](https://node-postgres.com).
|
|
|
|
## Development
|
|
|
|
To run the documentation locally, you need to have [Node.js](https://nodejs.org) installed. Then, you can clone the repository and install the dependencies:
|
|
|
|
```bash
|
|
cd docs
|
|
yarn
|
|
```
|
|
|
|
Once you've installed the deps, you can run the development server:
|
|
|
|
```bash
|
|
yarn dev
|
|
```
|
|
|
|
This will start a local server at [http://localhost:3000](http://localhost:3000) where you can view the documentation and see your changes.
|