Saber2pr's Blog

NodejsOperationMongodb

Here is an example of Nodejs manipulating mongodb: Demo There is a library for operating mongodb on npm, install

yarn add mongodb @types/mongodb

ngodb database service needs to be installed on this machine The api style of the mongodb library is still the callback form at the end of nodejs, although nodejs provides a tool function promisify for transformation, but many api transformations do not work well. It is recommended to manually write promise to convert the api of the mongodb library. Here are some: @ saber2pr/mongodb