Parse Server is a Parse.com API compatible router package for Node.js/Express.js.
Read the announcement blog post here: http://blog.parse.com/announcements/introducing-parse-server-and-the-database-migration-tool/
Read the migration guide here: https://parse.com/docs/server/guide#migrating
There is a development wiki here on GitHub: https://github.com/ParsePlatform/parse-server/wiki
Basic options:
databaseURI (required) - The connection string for your database, i.e. mongodb://user:pass@host.com/dbname
appId (required) - The application id to host with this server instance
masterKey (required) - The master key to use for overriding ACL security
cloud - The absolute path to your cloud code main.js file
fileKey - For migrated apps, this is necessary to provide access to files already hosted on Parse.
Client key options:
The client keys used with Parse are no longer necessary with parse-server. If you wish to still require them, perhaps to be able to refuse access to older clients, you can set the keys at intialization time. Setting any of these keys will require all requests to provide one of the configured keys.
clientKey
javascriptKey
restAPIKey
dotNetKey
Advanced options:
filesAdapter - The default behavior (GridStore) can be changed by creating an adapter class (see FilesAdapter.js)
databaseAdapter (unfinished) - The backing store can be changed by creating an adapter class (see DatabaseAdapter.js)
↧