Big news!Introducing Socket AI - ChatGPT-Powered Threat Analysis. Learn more
Socket
Log inDemoInstall

parse-server-fs-adapter

Package Overview
Dependencies
0
Maintainers
2
Versions
2
Issues
File Explorer

Advanced tools

parse-server-fs-adapter

File system adapter for parse-server

    1.0.1latest
    npm

Version published
Maintainers
2
Weekly downloads
323
decreased by-32.71%

Weekly downloads

Readme

Source

parse-server-fs-adapter

Build Status codecov.io

parse-server file system storage adapter

installation

npm install --save parse-server-fs-adapter

usage with parse-server

using a config file

{ "appId": 'my_app_id', "masterKey": 'my_master_key', // other options "filesAdapter": { "module": "parse-server-fs-adapter", "options": { "filesSubDirectory": "my/files/folder" // optional } } }

passing as an instance

var FSFilesAdapter = require('parse-server-fs-adapter'); var fsAdapter = new FSFilesAdapter({ "filesSubDirectory": "my/files/folder" // optional }); var api = new ParseServer({ appId: 'my_app', masterKey: 'master_key', filesAdapter: fsAdapter })

Keywords

FAQs

Last updated on 15 Aug 2016

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc