node-postgres 与 Nodejs 应用程序的 pg-promise
node-postgres vs pg-promise for Nodejs Application
我将构建一个以 Postgresql 作为后端的 Nodejs 应用程序。我不会使用像 Sequelize due to poor documentation and performance problems or any other ORM - ORM is an anti-pattern 这样的 ORM。
我发现 node-postgres 和 pg-promise 是这方面的候选者。那么,如果 node-postgres 自 2010 年以来一直在开发,而 pg-promise 自 2015 年以来一直在开发,那么任何人都可以阐明哪种工具比另一种更好或者哪种工具可以描述的场景。
pg-promise uses node-postgres internally. AFAIK pg-promise is a promise-based set of higher-level APIs on top that you might find useful. I'd recommend using whichever you feel more comfortable with. I'm the author of node-postgres.
我将构建一个以 Postgresql 作为后端的 Nodejs 应用程序。我不会使用像 Sequelize due to poor documentation and performance problems or any other ORM - ORM is an anti-pattern 这样的 ORM。
我发现 node-postgres 和 pg-promise 是这方面的候选者。那么,如果 node-postgres 自 2010 年以来一直在开发,而 pg-promise 自 2015 年以来一直在开发,那么任何人都可以阐明哪种工具比另一种更好或者哪种工具可以描述的场景。
pg-promise uses node-postgres internally. AFAIK pg-promise is a promise-based set of higher-level APIs on top that you might find useful. I'd recommend using whichever you feel more comfortable with. I'm the author of node-postgres.