• 授权协议:BSD
  • 开发厂商:Facebook
  • 软件语言:JavaScript
  • 更新日期:2016-02-04
Parse Server

Parse Server 是一个兼容Parse.com API 的路由包,用于 Express。Facebook 已经将这个项目基于 BSD 许可证开源。

Parse Server Parse.com API 服务器 项目简介

温馨提示:该项目除了使用 BSD 协议授权外,还需遵守附加的专利授权。 Parse Server 是一个兼容 Parse.com API 的路由包,用于 Express。Facebook 已经将这个项目基于 BSD 许可证开源。使用方法:var express = require('express');
var ParseServer = require('parse-server').ParseServer;

var app = express();

// Specify the connection string for your mongodb database
// and the location to your Parse cloud code
var api = new ParseServer({
  databaseURI: 'mongodb://localhost:27017/dev',
  cloud: '/home/myApp/cloud/main.js', // Provide an absolute path
  appId: 'myAppId',
  masterKey: 'mySecretMasterKey',
  fileKey: 'optionalFileKey'
});

// Serve the Parse API on the /parse URL prefix
app.use('/parse', api);

// Hello world
app.get('/', function(req, res) {
  res.status(200).send('Express is running here.');
});

var port = process.env.PORT || 1337;
app.listen(port, function() {
  console.log('parse-server-example running on port ' + port + '.');
});

Parse Server Parse.com API 服务器 评论内容