- 授权协议: 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);
});客户端实现包括:
图形程序开发人员指南
Michael Abrash / 前导工作室 / 机械工业出版社 / 1998 / 128
Michael Abrash's classic Graphics Programming Black Book is a compilation of Michael's previous writings on assembly language and graphics programming (including from his "Graphics Programming" column......一起来看看 《图形程序开发人员指南》 这本书的介绍吧!
