# 2019.10.25 今天是每日时报陪你的第 266 天

[文章] 我在公司演讲 GraphQL 时,整理的 PPT 以及基于 type-graphql 的演示案例:https://github.com/wubaiqing/GraphQL (opens new window)

[发现] 中国传统颜色在线手册,效果非常的赞:https://github.com/zerosoul/chinese-colors/blob/master/README.zh.md (opens new window)

[类库] Quasar Framework 是一个设计极其优秀的 UI 组件库,组件内容丰富,所有组件使用 flex 布局,支持移动/PC 端,支持第三方提供插件,支持打包成 PWA、Cordova、Electron 应用:https://github.com/quasarframework/quasar (opens new window)

[类库] empty-dir 可以很方便的检查目录是否为空:https://github.com/gulpjs/empty-dir (opens new window)

[工具] Capacitor 是由 ionic 团队最新开发的一个跨平台的应用程序容器,可以轻松构建在 iOS、Android、Electron 和 Web 上本机运行 Web 程序:https://github.com/ionic-team/capacitor (opens new window)

# 配图 - 中国传统颜色在线手册

# 配图 - GraphQL

# 配图 - Capacitor

# 示例 - empty-dir

var emptyDir = require('empty-dir');

// Using an error-back
emptyDir('./', function(err, result) {
  if (err) {
    console.error(err);
  } else {
    console.log('Directory is empty:', result);
  }
});

// Using a Promise
emptyDir('./').then(function(result) {
  console.log('Directory is empty:', result);
});

var result = emptyDir.sync('./test/empty');
console.log('Directory is empty:', result);
Last Updated: 10/25/2019, 2:22:03 PM