Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
parse-server-migrating-adapter
Advanced tools
Parse Server file adapter to migrate between adapters
Parse Server file adapter for migrating between different adapters.
$ 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
})
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.
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.
FAQs
Parse Server file adapter to migrate between adapters
We found that parse-server-migrating-adapter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.