https://github.com/hugodf/wait-for-pg
Wait for postgres
https://github.com/hugodf/wait-for-pg
es6 es6-modules javascript
Last synced: 22 days ago
JSON representation
Wait for postgres
- Host: GitHub
- URL: https://github.com/hugodf/wait-for-pg
- Owner: HugoDF
- License: mit
- Created: 2018-07-04T20:20:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-05T17:34:06.000Z (about 2 years ago)
- Last Synced: 2025-03-14T04:22:03.429Z (about 2 months ago)
- Topics: es6, es6-modules, javascript
- Language: JavaScript
- Homepage:
- Size: 171 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wait-for-pg
Wait for Postgres
## Getting Started
### Prerequisites
Tested on Node v16 with npm 9.
### Installing
Installing `wait-for-pg` globally will install the `wait-for-pg` command:
```
# Using npm
npm install -g wait-for-pg
# Using Yarn
yarn global add wait-for-pg
```Run using:
```
wait-for-pg
````wait-for-pg` can also be run using `npx`:
```
npx wait-for-pg
```## Built With
* [meow](https://github.com/sindresorhus/meow) - A CLI app helper
* [node-postgres](https://github.com/brianc/node-postgres) - PostgreSQL client for node.js
* [esm](https://github.com/standard-things/esm) - To write ES modules without transpilation## Versioning
We use [SemVer](http://semver.org/) for versioning.
## Authors
* **Hugo Di Francesco** - [HugoDF](https://github.com/HugoDF)
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
## Acknowledgments
* [Sindre Sorhus](https://github.com/sindresorhus) for `meow`
* [Brian C](https://github.com/brianc) for `pg`
* [Sindre Sorhus](https://github.com/sindresorhus) and [Sam Verschueren](https://github.com/SamVerschueren) for `np`
* [John-David Dalton](https://github.com/jdalton) for `esm`