https://github.com/bomberus/feathers-gridfs
https://github.com/bomberus/feathers-gridfs
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bomberus/feathers-gridfs
- Owner: Bomberus
- License: mit
- Created: 2020-09-30T11:55:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T12:01:25.000Z (over 5 years ago)
- Last Synced: 2025-01-21T05:11:28.043Z (over 1 year ago)
- Language: TypeScript
- Size: 119 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# feathers-gridfs
[](https://travis-ci.org/feathersjs/feathers-gridfs)
[](https://codeclimate.com/github/feathersjs/feathers-gridfs)
[](https://codeclimate.com/github/feathersjs/feathers-gridfs/coverage)
[](https://david-dm.org/feathersjs/feathers-gridfs)
[](https://www.npmjs.com/package/feathers-gridfs)
> Support GridFs for file storage
## Installation
```
npm install feathers-gridfs --save
```
## Documentation
TBD
## Complete Example
Here's an example of a Feathers server that uses `feathers-gridfs`.
```js
const feathers = require('@feathersjs/feathers');
const plugin = require('feathers-gridfs');
// Initialize the application
const app = feathers();
// Initialize the plugin
app.configure(plugin());
```
## License
Copyright (c) 2018
Licensed under the [MIT license](LICENSE).