-
Notifications
You must be signed in to change notification settings - Fork 94
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Project status #82
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
Comments
FYI over in TS-land I wrote and maintain a relatively complete pg-driver which can probably be made deno-compatible without too much difficulty: https://github.com/malthe/ts-postgres. |
@bartlomieju what is the roadmap of the module? are there any intention to develop functions for the majority of postgresql instructions and commands. Because creating a big query using |
@slim-hmidi It sounds like you're looking for a query builder or an ORM, which is probably not what this module is supposed to be. |
@kluzzebass I don't think if in a big project with a big query contains a lot of conditions a developer will enjoy writing a text query then add so many args. |
@slim-hmidi this repository contains driver for PostgreSQL - ie. low level primitives that allow you to connect and talk to the DB. Drivers are necessary to create ORMs or other higher-level libraries like query builders (think Knex). I don't intend to add much "sugar" to the code base, it should be left to user libraries like dso that @hayd pointed out. |
I wonder if it makes sense to merge resources with something like: https://github.com/porsager/postgres It’s a pure JS project with no dependencies, so there would be some nodeJS APIs that need altered I think it’s important to establish a best practice early, and perhaps it’s an opportunity to overtake pg, which is too big/standard and would need time to change. |
Please pin this issue. Also, a good postgres driver is rather urgent. I know, open source, not getting paid, do it yourself... I understand. I looked at adding a case for |
Would it not be better to directly port the node-postgres project over to Deno? As you can see above, I have opened a discussion about this on the original repository. |
It's almost a year now since I started mantaining
|
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
I just wanted to leave a short information for anyone interested in this project.
It seems to be half dead, but that's not the case. A huge chunk of my time is now dedicated to the work in main Deno repo at the moment.
I still intend to put more work into this module but that will happen after Deno 1.0 is released.
The text was updated successfully, but these errors were encountered: