brew uninstall --ignore-dependencies node icu4c
brew install node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
How to export | |
* mongo is mongoshell command | |
mongo dbname --quiet mongodbIndexExporter.js > index.js | |
*/ | |
let collectionNames = db.getCollectionNames(); | |
let index_data = {'collections': []}; | |
for (let i in collectionNames) { |