最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to "require(module)" in mongo shell - Stack Overflow

programmeradmin1浏览0评论

I am writing a mongo shell script for data management. I want to write it using modular code that makes use of function libraries as modules. In some cases, my own modules. In other cases, carefully selected node.js modules (that I know will work in the Mongo shell environment, e.g. uuid).

Unfortunately, Mongo lacks real module management. load() is not the same thing. I'm looking for a back-fill, as it were.

Does anybody know of a library that can provide CommonJS module loading functionality, that is generic enough to run in the Mongo shell, or that has been ported to run in the Mongo shell?

Yes, I know, I could just do it in a purely node.js environment. But if there is such a thing as a real module loader that will work in the mongo shell, that would be my first choice.

I am writing a mongo shell script for data management. I want to write it using modular code that makes use of function libraries as modules. In some cases, my own modules. In other cases, carefully selected node.js modules (that I know will work in the Mongo shell environment, e.g. uuid).

Unfortunately, Mongo lacks real module management. load() is not the same thing. I'm looking for a back-fill, as it were.

Does anybody know of a library that can provide CommonJS module loading functionality, that is generic enough to run in the Mongo shell, or that has been ported to run in the Mongo shell?

Yes, I know, I could just do it in a purely node.js environment. But if there is such a thing as a real module loader that will work in the mongo shell, that would be my first choice.

Share Improve this question edited Sep 2, 2014 at 20:29 John Arrowwood asked Aug 29, 2014 at 19:15 John ArrowwoodJohn Arrowwood 2,4902 gold badges24 silver badges34 bronze badges 1
  • The mongo shell is a more limited JavaScript environment than Node.js (particularly when it es to I/O options). If you want to use Node modules, why don't you implement your script in Node directly? – Stennie Commented Aug 30, 2014 at 3:10
Add a ment  | 

3 Answers 3

Reset to default 7

Well, there are some tips to get it working.

The first, if your CommonJS module requires no module is a simple as:

var module = {};

load('/lib/migration/forms.js');

print(typeof module.exports);

The second, if your module requires others is to build a single module with browserify and require it like in the above example.

No. The mongo shell is its own javascript environment running the V8 engine. You can't load in Node.js modules into the mongo shell anymore than you can into the browser. A lot of Node functions just won't be part of the mongo shell environment. You can either use the Node.js driver in Node.js so you can use your Node modules, or you can try to get the necessary bits into a js file that you can run to set up the appropriate environment when you run the shell, e.g.

mongo --shell mymongohost:port/myDB myjsfunctions.js

While the legacy mongo shell does not support node modules via the require statement, the new mongosh shell does. You will need to install it via the 5.0 MongoDB repo but it is patible with any database from 4.0 and above.

Reference here: https://www.mongodb./docs/mongodb-shell/write-scripts/require-external-modules/

发布评论

评论列表(0)

  1. 暂无评论