Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

parse-server-migrating-adapter

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse-server-migrating-adapter

Parse Server file adapter to migrate between adapters

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

parse-server-migrating-adapter

Coverage Status

Build Status

Parse Server file adapter for migrating between different adapters.

Quick Start

$ npm install parse-server-migrating-adapter --save

In your parse server index:

var ParseServer = require('parse-server').ParseServer;
var MigratingAdapter = require('parse-server-migrating-adapter')
var GridStoreAdapter = require('parse-server/lib/Adapters/Files/GridStoreAdapter').GridStoreAdapter
var S3Adapter = require('parse-server-s3-adapter')

var s3Adapter = new S3Adapter({
  bucket: process.env.S3_BUCKET_NAME,
  accessKey: process.env.AWS_ACCESS_KEY,
  secretKey: process.env.AWS_SECRET,
  region: 'us-east-1'
})

var fileAdapter = new MigratingAdapter(s3Adapter, [new GridStoreAdapter(process.env.DATABASE_URI)])

var api = new new ParseServer({
  filesAdapter: fileAdapter
})

Implementation

The adapter takes a main adapter, which is what is used to create any new files. It also takes a list of old adapters. When requesting a file, the main adapter is searched first, and then the old adapters are searched. If the file is found in an old adapter, it is stored on the main adapter.

Contributing

This projects follows standardjs. We also try to maintain 100% real test coverage. When submitting a PR, make sure that there is an accompanying test, and that npm run build is clean.

TODO

  • Support for file streaming

FAQs

Package last updated on 29 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc