- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: https://github.com/doubleleft/hook
- 软件文档: https://github.com/doubleleft/hook/wiki
- 官方下载: https://github.com/doubleleft/hook
软件介绍
Hook 是一个开源的 Backend as a Service 项目。实现了创建一个后端应用的所有内容。
客户端示例代码:
var hook = new Hook.Client({
url: "http://local-or-remote-hook.com/index.php/",
appId: 1, // your app's id
key: 'test' // your app's public key
});
hook.collection('posts').create({
title: "Post name",
summary: "My awesome new post",
stars: 5
});
hook.collection('posts').where('stars', '>=', 5).then(function(data) {
console.log(data);
});客户端实现包括:
