Skip to content

Commit

Permalink
feat(mongodb): Add and update feathers-mongodb as @feathersjs/mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Apr 24, 2022
1 parent 5b323c3 commit e323e76
Show file tree
Hide file tree
Showing 9 changed files with 956 additions and 140 deletions.
218 changes: 78 additions & 140 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions packages/mongodb/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)

Copyright (c) 2022 Feathers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

22 changes: 22 additions & 0 deletions packages/mongodb/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# @feathersjs/mongodb

[![CI](https://github.com/feathersjs/feathers/workflows/CI/badge.svg)](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
[![Download Status](https://img.shields.io/npm/dm/@feathersjs/mongodb.svg?style=flat-square)](https://www.npmjs.com/package/@feathersjs/mongodb)

> Feathers MongoDB service adapter
## Installation

```
npm install @feathersjs/mongodb --save
```

## Documentation

Refer to the [Feathers documentation](https://docs.feathersjs.com) for more details.

## License

Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)

Licensed under the [MIT license](LICENSE).
69 changes: 69 additions & 0 deletions packages/mongodb/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"name": "@feathersjs/mongodb",
"description": "Feathers MongoDB service adapter",
"version": "0.0.0",
"homepage": "https://feathersjs.com",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
},
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 14"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**",
"*.d.ts",
"*.js"
],
"scripts": {
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc",
"test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
},
"directories": {
"lib": "lib"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@feathersjs/feathers": "^5.0.0-pre.18",
"@feathersjs/adapter-commons": "^5.0.0-pre.18",
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18"
},
"peerDependencies": {
"mongodb": "^4.5.0"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^5.0.0-pre.18",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"mocha": "^9.2.2",
"shx": "^0.3.4",
"typescript": "^4.6.3"
}
}
Loading

0 comments on commit e323e76

Please # to comment.