All Projects → jalik → meteor-jalik-ufs-gridfs

jalik / meteor-jalik-ufs-gridfs

Licence: MIT license
GridFS store for UploadFS

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to meteor-jalik-ufs-gridfs

meteor-autoform-bs-datetimepicker
Custom bootstrap-datetimepicker input type with timezone support for AutoForm
Stars: ✭ 18 (+38.46%)
Mutual labels:  meteor
astroapp-rn-boilerplate
AstroApp, all backend React Native app boilerplate
Stars: ✭ 13 (+0%)
Mutual labels:  meteor
meteor-application-template-react
Template for application development using Meteor, Bootstrap 5, and React
Stars: ✭ 2 (-84.62%)
Mutual labels:  meteor
grapher-vue
Integrates Vue with Grapher in an easy-to-use way
Stars: ✭ 19 (+46.15%)
Mutual labels:  meteor
Meteor-logger-mongo
🍃 Meteor Logging: Store application log messages in MongoDB
Stars: ✭ 20 (+53.85%)
Mutual labels:  meteor
meteor-video-chat
Simple id based video calling in meteor
Stars: ✭ 33 (+153.85%)
Mutual labels:  meteor
Block-Farm
A farming game built upon Ethereum platform.
Stars: ✭ 60 (+361.54%)
Mutual labels:  meteor
meteor-ddp-php
Minimalist PHP library for client-side DDP communication
Stars: ✭ 49 (+276.92%)
Mutual labels:  meteor
braintree-meteor-example
A simple Meteor and Braintree drop-in integration
Stars: ✭ 25 (+92.31%)
Mutual labels:  meteor
crater
Meteor/Webpack/React SSR app skeleton that runs your app code outside of Meteor Isobuild
Stars: ✭ 82 (+530.77%)
Mutual labels:  meteor
graphqlizer
Make your meteor mongo collections accessible over a graphql endpoint
Stars: ✭ 37 (+184.62%)
Mutual labels:  meteor
redoc
redoc - generate documentation from multiple project repos.
Stars: ✭ 21 (+61.54%)
Mutual labels:  meteor
hypersubs
an upgraded version of Meteor subscribe, which helps optimize data and performance!
Stars: ✭ 13 (+0%)
Mutual labels:  meteor
React-Hue
🎨 A Material color palette tool based on Meteor, React, Material UI.
Stars: ✭ 45 (+246.15%)
Mutual labels:  meteor
meteor-docker
Docker image for Meteor.
Stars: ✭ 41 (+215.38%)
Mutual labels:  meteor
node-on-fhir
Tech stack for building MACRA and 21st Century Cures compliant webapps.
Stars: ✭ 75 (+476.92%)
Mutual labels:  meteor
meteor-devtools-evolved
The Meteor framework development tool belt, evolved.
Stars: ✭ 146 (+1023.08%)
Mutual labels:  meteor
darkest-space
Minimal colorscheme for vim.
Stars: ✭ 18 (+38.46%)
Mutual labels:  meteor
meteor-telegram-bot
Telegram bot plugin for Meteor
Stars: ✭ 25 (+92.31%)
Mutual labels:  meteor
auto-analytics
UNMAINTAINED! - Complete Google Analytics, Mixpanel, KISSmetrics (and more) integration for JavaScript applications.
Stars: ✭ 28 (+115.38%)
Mutual labels:  meteor

UploadFS GridFS Store

A Mongo GridFS store for UploadFS.

Installation

To install the package, execute this command in the root of your project :

meteor add jalik:ufs-gridfs

If later you want to remove the package :

meteor remove jalik:ufs-gridfs

Creating a Store

The code below is available on the client and the server.

GridFS store files in a Mongo database by cutting them in chunks.

import {Mongo} from 'meteor/mongo';
import {UploadFS} from 'meteor/jalik:ufs';
import {GridFSStore} from 'meteor/jalik:ufs-gridfs';

// Declare store collection
const Photos = new Mongo.Collection('photos');

// Declare store
const PhotoStore = new GridFSStore({
    collection: Photos,
    name: 'photos',
    chunkSize: 1024 * 255
});

License

This package is released under the MIT License.

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].