# 2019.06.12

[新闻] VueConf 2019 尤雨溪演讲总结:https://mp.weixin.qq.com/s/6N6tuUEmS7eUOg82XQw8EA (opens new window)

[类库] RxDB 是一个 JavaScript 客户端数据库,主要用于浏览器、NodeJS、Electron、Cordova、React-Native 以及其他任何 JavaScript 运行环境:https://github.com/pubkey/rxdb (opens new window)

[类库] 有时我们需要在浏览器上生成文件并保存到本地,这个借助 FileSaver.js 就可以很方便地实现。FileSaver.js 是一款基于 HTML5 完成文件保存插件,它可以帮你直接从网页中导出多种格式文件:https://github.com/eligrey/FileSaver.js (opens new window)

[类库] resolve-bin 是通过检查 node_modules 各个包中的 package.json bin 字段,来解析指定包的 bin 文件目录 :https://github.com/thlorenz/resolve-bin (opens new window)

# 示例 - RxDB

import RxDB from 'rxdb';
const db = await RxDB.create({
    name: 'heroesdb',
    adapter: 'websql',
    password: 'myLongAndStupidPassword', // optional
    multiInstance: true                  // default: true
  });                                                       // create database

await db.collection({name: 'heroes', schema: mySchema});    // create collection
db.heroes.insert({ name: 'Bob' });                          // insert document

# 示例 - FileSaver.js

var FileSaver = require('file-saver');
var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
FileSaver.saveAs(blob, "hello world.txt");

# 示例 - resolve-bin

var resolveBin = require('resolve-bin');

// package.json: "bin": "bin/tap.js"
resolveBin('tap', function (err, bin) {
  if (err) return console.error(err);
  console.log(bin);  
});

// => [..]/resolve-bin/node_modules/tap/bin/tap.js

# 配图 - VueConf 2019 尤雨溪演讲总结

# 今日图 - 工作的我 VS 下班的我

Last Updated: 6/14/2019, 3:21:27 PM