Parse

来自开放百科 - 灰狐
(版本间的差异)
跳转到: 导航, 搜索
(指南)
 
(未显示1个用户的8个中间版本)
第1行: 第1行:
 
[[Facebook]] Parse 移动开发者平台将于[http://blog.parse.com/announcements/moving-on/ 2017年1月28日关闭]。
 
[[Facebook]] Parse 移动开发者平台将于[http://blog.parse.com/announcements/moving-on/ 2017年1月28日关闭]。
 +
 +
==[http://docs.parseplatform.org/parse-server/guide/ 指南]==
 +
事先安装好 [[Node.js]] 和 [[MongoDB]]
 +
$ sh <(curl -fsSL https://raw.githubusercontent.com/parse-community/parse-server/master/bootstrap.sh)
 +
$ npm install -g mongodb-runner
 +
$ mongodb-runner start
 +
$ npm start
 +
http://localhost:1337/parse
 +
 +
git clone https://github.com/parse-community/parse-server-example
 +
npm install
 +
mongo
 +
npm start
  
 
==IoT==
 
==IoT==
 
*[http://blog.parse.com/learn/connecting-hardware-with-the-cloud-parse-for-iot/ Connecting Hardware with the Cloud: Parse for IoT]
 
*[http://blog.parse.com/learn/connecting-hardware-with-the-cloud-parse-for-iot/ Connecting Hardware with the Cloud: Parse for IoT]
 +
*[https://github.com/ParsePlatform/Anydevice AnyDevice] An [[Internet of Things]] (IoT) sample application built on Parse
 
*[http://blog.parse.com/learn/make-a-cloud-controlled-car-using-parse-for-iot/ Make a Cloud-Controlled Car using Parse for IoT] [https://github.com/ParsePlatform/InternetCar Internet Car]
 
*[http://blog.parse.com/learn/make-a-cloud-controlled-car-using-parse-for-iot/ Make a Cloud-Controlled Car using Parse for IoT] [https://github.com/ParsePlatform/InternetCar Internet Car]
 
*[http://blog.parse.com/learn/using-parse-for-iot-to-create-an-order-button/ Using Parse for IoT to Create an Order Button] [https://github.com/ParsePlatform/AnyButton AnyButton @ GitHub]
 
*[http://blog.parse.com/learn/using-parse-for-iot-to-create-an-order-button/ Using Parse for IoT to Create an Order Button] [https://github.com/ParsePlatform/AnyButton AnyButton @ GitHub]
第31行: 第45行:
 
==[[MongoDB]]==
 
==[[MongoDB]]==
 
*[http://blog.parse.com/announcements/mongodb-rocksdb-parse/ MongoDB + RocksDB at Parse] [[RocksDB]]
 
*[http://blog.parse.com/announcements/mongodb-rocksdb-parse/ MongoDB + RocksDB at Parse] [[RocksDB]]
 +
*[https://github.com/ParsePlatform/parse-server/wiki/MongoRocks Using MongoDB + RocksDB]
 
*[http://blog.parse.com/learn/engineering/mongodb-rocksdb-writing-so-fast-it-makes-your-head-spin/ MongoDB + RocksDB: Writing so Fast it Makes Your Head Spin]
 
*[http://blog.parse.com/learn/engineering/mongodb-rocksdb-writing-so-fast-it-makes-your-head-spin/ MongoDB + RocksDB: Writing so Fast it Makes Your Head Spin]
 
*[http://blog.parse.com/learn/engineering/mongodb-rocksdb-benchmark-setup-compression/ MongoDB + RocksDB: Benchmark Setup & Compression]
 
*[http://blog.parse.com/learn/engineering/mongodb-rocksdb-benchmark-setup-compression/ MongoDB + RocksDB: Benchmark Setup & Compression]
第44行: 第59行:
 
*[http://blog.parse.com/learn/engineering/parse-security-i-are-you-the-key-master/ Parse Security Part I]、[http://blog.parse.com/2014/07/07/parse-security-ii-class-hysteria/ Part II]、[http://blog.parse.com/2014/07/14/parse-security-iii-are-you-on-the-list/ Part III]、[http://blog.parse.com/2014/07/21/parse-security-iv-ahead-in-the-cloud/ Part IV]、[http://blog.parse.com/2014/07/28/parse-security-v-how-to-make-friends/ Part V]
 
*[http://blog.parse.com/learn/engineering/parse-security-i-are-you-the-key-master/ Parse Security Part I]、[http://blog.parse.com/2014/07/07/parse-security-ii-class-hysteria/ Part II]、[http://blog.parse.com/2014/07/14/parse-security-iii-are-you-on-the-list/ Part III]、[http://blog.parse.com/2014/07/21/parse-security-iv-ahead-in-the-cloud/ Part IV]、[http://blog.parse.com/2014/07/28/parse-security-v-how-to-make-friends/ Part V]
 
*[https://github.com/ParsePlatform/CloudCodeOAuthGitHubTutorial Adding Third-Party Authentication to your Web App]
 
*[https://github.com/ParsePlatform/CloudCodeOAuthGitHubTutorial Adding Third-Party Authentication to your Web App]
 +
 +
==身份验证==
 +
*[https://github.com/ParsePlatform/parse-server/blob/master/src/Auth.js Auth.js]
 +
*[https://github.com/ParsePlatform/parse-server/tree/master/src/authDataManager authDataManager] 支持主流社交账户
 +
*集成 [https://github.com/bnoguchi/everyauth everyauth]
  
 
==消息推送==
 
==消息推送==
第67行: 第87行:
 
<gallery>
 
<gallery>
 
image:parse-comparison-parse-server.png|比较
 
image:parse-comparison-parse-server.png|比较
 +
image:parse-embedded.png|Parse Embedded
 
</gallery>
 
</gallery>
  
第72行: 第93行:
 
*[https://parse.com/ Parse官网]
 
*[https://parse.com/ Parse官网]
 
*[https://parseplatform.github.io/ Parse Open Source Hub]
 
*[https://parseplatform.github.io/ Parse Open Source Hub]
 +
*[https://github.com/parse-community/ Parse Community @ GitHub]
 
*[https://github.com/ParsePlatform Parse @ GitHub]
 
*[https://github.com/ParsePlatform Parse @ GitHub]
 
*[https://www.parse.com/tutorials Parse Tutorials]
 
*[https://www.parse.com/tutorials Parse Tutorials]
第88行: 第110行:
 
[[category:MongoDB]]
 
[[category:MongoDB]]
 
[[category:facebook]]
 
[[category:facebook]]
 +
[[category:huihoo]]

2017年12月5日 (二) 08:15的最后版本

Facebook Parse 移动开发者平台将于2017年1月28日关闭

目录

[编辑] 指南

事先安装好 Node.jsMongoDB

$ sh <(curl -fsSL https://raw.githubusercontent.com/parse-community/parse-server/master/bootstrap.sh)
$ npm install -g mongodb-runner
$ mongodb-runner start
$ npm start
http://localhost:1337/parse

git clone https://github.com/parse-community/parse-server-example
npm install 
mongo
npm start

[编辑] IoT

[编辑] 项目

[编辑] 应用

[编辑] MongoDB

[编辑] 安全

[编辑] 身份验证

[编辑] 消息推送

[编辑] Parse Dashboard

[编辑] Parse Analytics

[编辑] 部署运营

[编辑] 服务商

[编辑] 图集

[编辑] 链接

分享您的观点
个人工具
名字空间

变换
操作
导航
工具箱