Giter VIP home page Giter VIP logo

grid-fs's Introduction

grid-fs

Convenience wrappers around MongoDB GridFS methods.

Installation

npm install grid-fs --save

Usage

Require GridFs constructor and create a gridFs instance

var GridFs = require('grid-fs');
var gridFs = new GridFs(db[, collectionName]);

Where

  • db is a opened database instance
  • collectionName (optional, defaults to 'fs') is the collection name for the stored files

Example

var MongoClient = require('mongodb').MongoClient;
var GridFs = require('grid-fs');
MongoClient.connect('mongodb://127.0.0.1:27017/db', function(err, db) {
    var gridFs = new GridFs(db);
});

List file data

gridFs.listFile(filename, callback)

Where

  • filename is the name of the file to list
  • callback is the function to run with arguments (err, info). Info object contains the following properties
    • filename
    • contentType
    • uploadDate – Date object
    • length – length in bytes
    • metadata – metadata object used when creating the write stream
    • internalMd5 – MD5 hash of the contents

Example

gridFs.listFile('test.txt', function(err, info){
    if(err){
        console.log('Error or file not found');
    }else{
        console.log('File uploaded: %s', info.uploadDate);
    }
});

List all files

List all files in the collection

gridFs.list(callback)

Where

  • callback is the function to run when file list is fetched, uses arguments (err, list) where list is an array of file names

Example

gridFs.list(function(err, list){
    if(err){
        console.log(err);
    }else{
        list.forEach(function(filename){
            console.log(filename);
        });
    }
});

Write files to GridFs

Create Writable stream

var stream = gridFs.createWriteStream(filename[, options]);

Where

  • filename is the name of file to write to (overwrites existing file if present)
  • options is the optional options object (metadata object propery is probably most important)

Listen for the 'close' event to find out when the file has been stored to the GridFs

Example

var stream = gridFs.createWriteStream('test.txt', {metadata: {author: 'Andris'}});
stream.end('text.txt');
stream.on('close', function(){
    console.log('File stored and closed');
});

Read files from GridFs

Create Readable stream

var stream = gridFs.createReadStream(filename);

Where

  • filename is the name of the file to read from

Example

var stream = gridFs.createReadStream('test.txt');
stream.pipe(process.stdout);

Delete files from GridFs

Unlink a file with

gridFs.unlink(filename, callback);

Where

  • filename is the name of the file to unlink
  • callback is the function to run once the file is deleted

Example

gridFs.unlink('test.txt', function(err){
    if(err){
        console.log('Unlink failed');
    }
});

License

MIT

grid-fs's People

Contributors

andris9 avatar

Watchers

James Cloos avatar usertoken avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.