search

Home  >  Q&A  >  body text

mongodb - mongoose还是mongojs?

Node.js开发,使用mongoose还是mongojs?能否做下对比。

黄舟黄舟2801 days ago627

reply all(2)I'll reply

  • 巴扎黑

    巴扎黑2017-04-24 09:14:24

    I have never used mongojs, but it seems to be similar to mongodb, which is a simple encapsulation of the MongoDB API.

    My suggestion is that if it is an application, that is, a user-oriented project, such as a website, then use mongoose. mongoose is currently the best MongoDB ORM in Node.js. By pre-defining Schema, mongoose can help you complete part of the data verification and process control work, speeding up development.

    If it is a library that may be referenced by other projects, I recommend using MongoDB’s native API directly, because in this case, the documents in the collection often do not have a specific pattern and cannot take advantage of the functions of mongoose. At the same time, there is usually less repetitive logic in the library than in the application, and using a simple API will provide greater flexibility.

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-24 09:14:24

    Just search on google, there are comparisons and answers to your questions on stackoverflow

    reply
    0
  • Cancelreply