StackOverflow 文件 rethinkdb 教程 開始使用 Node 在資料庫上建立一個新表 在資料庫上建立一個新表 Created: November-22, 2018 r.connect({host: 'localhost', port: 28015}) .then((conn) => { return r.db("stackoverflow").tableCreate("examples").run(conn); }).then((result) => { console.log(result); }); 將文件插入表中建立一個新資料庫