文件名称:
超媒体API原型框架Fortune.js.zip
开发工具:
文件大小: 195kb
下载次数: 0
上传时间: 2019-07-18
详细说明: 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)) 标签:Fortune
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
相关搜索: