Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kjirou/mongo_tutorial
Don't think, use.
https://github.com/kjirou/mongo_tutorial
Last synced: 12 days ago
JSON representation
Don't think, use.
- Host: GitHub
- URL: https://github.com/kjirou/mongo_tutorial
- Owner: kjirou
- License: mit
- Created: 2014-07-15T17:00:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-08-31T07:47:53.000Z (about 3 years ago)
- Last Synced: 2023-03-30T12:33:10.233Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MongoDB Tutorial
================This is a MongoDB tutorial for people who are not good at thinking.
考えるのが苦手な人のための MongoDB チュートリアルです。
[マニュアル](http://docs.mongodb.org/manual/) の任意の 1 ページを元に:
- マニュアルに記載のある、サンプルクエリ
- マニュアルのサンプルクエリが想定しているであろう、サンプル DB を生成するコマンド
- 自分が理解するために勝手に付けた、追加サンプルクエリこれらの情報を抽出・追加して、「考えずに、読まずに、クエリを打ってるだけで理解できるマニュアル」を再構成する試みです。
## Installation
```
git clone [email protected]:kjirou/mongo_tutorial.git
cd mongo_tutorial
npm install
```## Use Sample Database Generator
Usage:
```
path/to/mongo_tutorial/bin/gendb [-d db-name] generator-script-name
```For example:
```
path/to/mongo_tutorial/bin/gendb articles
```## Tutorials
- [Aggregation](tutorials/aggregation.md)
- [Tips](tutorials/tips.md)## Development
### Testing
```
npm test
```