# Meteor-cfs-access-point **Repository Path**: mirrors_tanis2000/Meteor-cfs-access-point ## Basic Information - **Project Name**: Meteor-cfs-access-point - **Description**: CollectionFS, add ddp and http accesspoint capability - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README cfs-access-point [![Build Status](https://travis-ci.org/CollectionFS/Meteor-cfs-access-point.png?branch=master)](https://travis-ci.org/CollectionFS/Meteor-cfs-access-point) ========================= This is a Meteor package used by [CollectionFS](https://github.com/CollectionFS/Meteor-CollectionFS). You don't need to manually add this package to your app. It is added when you add the `collectionFS` package. You could potentially use your own access point package instead. ## Define a URL for Collection Listing To define a URL that accepts GET requests and returns a list of published files in a FS.Collection: ```js Images = new FS.Collection("images", { stores: [myStore] }); FS.HTTP.publish(Images, function () { // `this` provides a context similar to Meteor.publish return Images.find(); }); ``` The URL will be '/cfs/record/images', where the `cfs` piece is configurable using the `FS.HTTP.setBaseUrl` method. ## API Documentation [Here](api.md)