# 2019.03.19

[类库] LowDB 是一个本地 JSON 数据库,基于 Lodash 开发的,提供了简单的 API 可以方便的查询数据:https://github.com/typicode/lowdb (opens new window)

底部有代码示例

[类库] 利用 JSON-server 可以快速搭建模拟 REST 风格的 Server 端,可以搭配上面的 LowDB 使用,这篇博客 (opens new window)详细的介绍了 JSON-server 的使用方式:https://github.com/typicode/json-server (opens new window)

[类库] 使用 CSS 实现 Instagram 滤镜效果演示效果 (opens new window)https://github.com/picturepan2/instagram.css (opens new window)

[工具] 油猴脚本 (opens new window)-直接下载百度网盘和“百度网盘分享”的文件,直链下载,超级加速;最后更新日期是 3 月 15 号:https://github.com/syhyz1990/baiduyun (opens new window)

[资源] 深度学习 500 问,以“问答”的形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述:https://github.com/scutan90/DeepLearning-500-questions (opens new window)

# 配图 - Instagram.css

# 示例 - LowDB

db.defaults({ posts: [], user: {}, count: 0 })
  .write()

db.get('posts')
  .push({ id: 1, title: 'lowdb is awesome'})
  .write()

db.set('user.name', 'typicode')
  .write()
Last Updated: 3/19/2019, 12:15:50 PM