Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
问题就像您可能从标题中猜到的那样,如果我可以使用连接到 MongoDB 的 Node.JS,而无需加载 MongoJS 模块。
我想最大限度地减少应用程序,因此加载外部模块将加载客户端。MongoJS 的其他替代品是什么?
您可以直接使用mongodb-native驱动程序,而无需使用包装它的 MongoJS 模块。
npm install mongodb
请参阅此处的文档。