Implement MongoDB client

This commit is contained in:
Tankred Hase
2016-05-25 16:13:49 +02:00
parent 7f629aec13
commit ce2b24d83d
9 changed files with 378 additions and 1 deletions

25
.jshintrc Normal file
View File

@@ -0,0 +1,25 @@
{
"strict": true,
"node": true,
"nonew": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"newcap": true,
"regexp": true,
"evil": true,
"eqnull": true,
"expr": true,
"undef": true,
"unused": true,
"esnext": true,
"globals": {
"describe" : true,
"it" : true,
"before" : true,
"beforeEach" : true,
"after" : true,
"afterEach" : true
}
}