'DB/Mongo'에 해당되는 글 1건

  1. 2016.12.23 MongoBooster

MongoBooster

|


# MongoDB GUI Tool - MongoBooster
> 2016.12.23

## 주요 특징
* 제한이 있긴 하지만 상업적 용도로 사용 가능!
  * [링크](https://mongobooster.com/downloads#whatarethelimitationsinthefreeunregisterededition) : 개인/상업 용도로 사용 가능하지만 일부 기능이 제한되어 있으며 또 일부 기능은 60일 뒤 사용할 수 없음
* CLI 명령 가능
* Javascript 유저에게 더 강력한 CLI 문법
  * ES6 문법과 db 쿼리를 섞어서 쓸 수 있다.
  * Lodash, ShellJs, Mathjs and Moment 라이브러리가 기본 내장되어 있다.
    * 각각 `_`, `shelljs`, `math`, `moment` 변수로 사용할 수 있다.
  * Example (의미 없는 코드이다...)
  ```
  const arr = [];
  db.test.find({}, {_id: 1}).forEach(doc => arr.push(doc._id));
  _.times(3, idx => console.log(`${++idx}'t result : ${arr.length}`));
  ```

## 기타 툴
* CLI 명령이 필요 없다면 [MongoHub](https://github.com/jeromelebel/MongoHub-Mac) 추천!

And


prev | 1 | next