超媒体 API 原型框架 Fortune.js
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://fortunejs.com/
软件介绍
fortune 是一个超媒体 API 原型框架,实现 JSON API 规范。fortune 具有一个模块化的持久层,里面包括了 NeDB (内联), MongoDB, MySQL, Postgres 和 SQLite 的适配器,可以查看 引导手册 了解如何使用。
Fortune 实现了所有 JSON API 的规范,还有一些其他的特性:
使用简单, Fortune 提供免费的路线控制和数据库交互,不需要用户制作管道。
关联和双向关系的映射,不需要用户管理资源之间的关联关系。
在编辑前或者阅览之后,自动变换资源,实现特定的应用逻辑
fortune 没有相关的授权和身份验证,你可以在你的应用中实现,可以查看样板:keystore.js 。
用 npm 安装:
$ npm install fortune
示例代码:
import fortune from 'fortune'
import http from 'http'
const store = fortune.create()
// The `net.http` function returns a listener function which does content
// negotiation, parses headers, and maps the response to an HTTP response.
const server = http.createServer(fortune.net.http(store))
store.defineType('user', {
name: { type: String },
// Following and followers are inversely related (many-to-many).
following: { link: 'user', inverse: 'followers', isArray: true },
followers: { link: 'user', inverse: 'following', isArray: true },
// Many-to-one relationship of user posts to post author.
posts: { link: 'post', inverse: 'author', isArray: true }
})
store.defineType('post', {
message: { type: String },
// One-to-many relationship of post author to user posts.
author: { link: 'user', inverse: 'posts' }
})
store.connect().then(() => server.listen(1337))
Java学习笔记
林信良 / 清华大学出版社 / 2015-3-1 / CNY 68.00
●本书是作者多年来教学实践经验的总结,汇集了学员在学习课程或认证考试中遇到的概念、操作、应用等问题及解决方案 ●针对Java SE 8新功能全面改版,无论是章节架构或范例程序代码,都做了重新编写与全面翻新 ●详细介绍了JVM、JRE、Java SE API、JDK与IDE之间的对照关系 ●从Java SE API的源代码分析,了解各种语法在Java SE API中的具体应用 ......一起来看看 《Java学习笔记》 这本书的介绍吧!
