记录本人制作博客系统和学习knex
找的相关资料链接:
1、博客系统
https://github.com/huoguozhang/my-blog/tree/master/models
2、与typescript
结合,TypeScript + Express + Objection.js + Knex.js + MySQL
https://github.com/corocn/ts-server/tree/61c1e928517348f3df8c3bf8e10a6ddd0fca6cf5
包含内容:migrations
3、knex.js中文文档-查询
https://blog.songxingguo.com/2018/06/30/knex.js-query/
4、migration with knex
https://www.ctolib.com/topics-109587.html
5、Express + Knex + Objection = Painless API with DB
https://itnext.io/express-knex-objection-painless-api-with-db-74512c484f0c
Eager loading
User.query().where('id', id).eager('messages').then(user => {res.json(user)})User.query().where('id', id).eager('[pictures, messages.comments]')
6、knex的用户登录写法
https://github.com/Bijusrt/Blog-Project/blob/master/controler/login.js
knex.select().from('blog_login').then
...
jwt.sign(userName,'athuragasiyam')
7、nest + knex 项目
https://github.com/AlxPatidar/nest-knex
8、一个graphql-engine
项目
https://github.com/hasura/graphql-engine/blob/a7eabe034ccf15798b85e35ee62f03bcce59e0b7/community/sample-apps/nextjs-8-serverless/with-apollo-jwt/hasura/migrations/1554285367178_nextjs-auth.up.sql
9、Making a RESTful API with Hapi.js