All Projects → lykmapipo → mongoose-gridfs

lykmapipo / mongoose-gridfs

Licence: MIT License
mongoose gridfs on top of new gridfs api

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to mongoose-gridfs

MeowDB.js
Database in JSON (Node.JS Library)
Stars: ✭ 12 (-84.81%)
Mutual labels:  filesystem, fs
nestjs-file-streaming
NestJS File Streaming With MongoDB
Stars: ✭ 28 (-64.56%)
Mutual labels:  mongoose, gridfs
sandboxed-fs
Sandboxed Wrapper for Node.js File System API
Stars: ✭ 41 (-48.1%)
Mutual labels:  filesystem, fs
tabfs-specs
Specifications for the tabfs filesystem (osdev) | Mirror of https://codeark.it/Chalk-OS/tabfs-specs
Stars: ✭ 15 (-81.01%)
Mutual labels:  filesystem, fs
gof
Yet another simple Go filesystem wrapper
Stars: ✭ 13 (-83.54%)
Mutual labels:  filesystem, fs
fu
Unix's Find, Unleashed.
Stars: ✭ 32 (-59.49%)
Mutual labels:  filesystem, fs
vue-fs
A Vue file management client, complete with a node/express/FS backend.
Stars: ✭ 40 (-49.37%)
Mutual labels:  filesystem, fs
Write
Write data to the file system, creating any intermediate directories if they don't already exist. Used by flat-cache and many others!
Stars: ✭ 68 (-13.92%)
Mutual labels:  stream, fs
korefile
File System API for Local/GitHub.
Stars: ✭ 29 (-63.29%)
Mutual labels:  filesystem, fs
watcher
The file system watcher that strives for perfection, with no native dependencies and optional rename detection support.
Stars: ✭ 37 (-53.16%)
Mutual labels:  filesystem, fs
rxnode
Rxnode - a small and fast wrapper around the nodejs API using RxJS.
Stars: ✭ 24 (-69.62%)
Mutual labels:  filesystem, fs
fs.c
File system API much like Node's fs module (synchronous)
Stars: ✭ 65 (-17.72%)
Mutual labels:  filesystem, fs
fs-fuse
Export any Node.js `fs`-like object as a FUSE filesystem
Stars: ✭ 32 (-59.49%)
Mutual labels:  filesystem, fs
unionfs
Use multiple fs modules at once
Stars: ✭ 170 (+115.19%)
Mutual labels:  filesystem, fs
dropbox-fs
📦 Node FS wrapper for Dropbox
Stars: ✭ 35 (-55.7%)
Mutual labels:  filesystem, fs
node-fs
node-fs
Stars: ✭ 55 (-30.38%)
Mutual labels:  mongoose, fs
Draxt
draxt.js – NodeList/jQuery-like package for File System (node.js)
Stars: ✭ 192 (+143.04%)
Mutual labels:  filesystem, fs
Egg Restfulapi
🏅 基于Egg.js 2.0 & {mongoose,jwt}RESTful API 模板,用于快速集成开发RESTful前后端分离的服务端。
Stars: ✭ 524 (+563.29%)
Mutual labels:  mongoose, fs
SimpleOS
Operating System Coded in Assembly and C
Stars: ✭ 72 (-8.86%)
Mutual labels:  filesystem, fs
fileupload-nodejs
MongoDB file upload using NodeJS and Mongo GridFS
Stars: ✭ 54 (-31.65%)
Mutual labels:  mongoose, gridfs

mongoose-gridfs

Build Status Dependencies Status Coverage Status GitHub License

Commitizen Friendly code style: prettier Code Style npm version

mongoose gridfs on top of new gridfs api

Note!: Only compatible with Mongoose >= 6.0.7+

Note!: Ensure mongoose connection before use

Requirements

Installation

$ npm install --save mongoose mongoose-gridfs

Usage

import { createReadStream } from 'fs';
import { createModel } from 'mongoose-gridfs';

// use default bucket
const Attachment = createModel();

// or create custom bucket with custom options
const Attachment = createModel({
    modelName: 'Attachment',
    connection: connection
});

// write file to gridfs
const readStream = createReadStream('sample.txt');
const options = ({ filename: 'sample.txt', contentType: 'text/plain' });
Attachment.write(options, readStream, (error, file) => {
  //=> {_id: ..., filename: ..., ...}
});

// read larger file
const readStream = Attachment.read({ _id });

// read smaller file
Attachment.read({ _id }, (error, buffer) => { ... });

// remove file and its content
Attachment.unlink({ _id }, (error) => { ... });

Read Documentation

Literature Reviewed

Testing

  • Clone this repository

  • Install all development dependencies

npm install
  • Run example
npm run dev
  • Then run test
npm test

Contribute

It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.

License

The MIT License (MIT)

Copyright (c) CodeTanzania & Contributors

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].