通过browserify在浏览器中执行sqlite查询

时间:2018-06-19 03:11:01

标签: javascript node.js browserify

我有一个项目,我应该使用纯javascript在浏览器中显示sqlite表。

我安装了sqlite3(一个nodejs包)和browserify来执行并在客户端运行它。但是当我尝试做一个简单的捆绑时,我得到错误:

 bundle.js:12945 Uncaught TypeError: Cannot read property '_handle' of undefined

指向:

74:[function(require,module,exports){
    (function (process){
      module.exports = function (blocking) {
        [process.stdout, process.stderr].forEach(function (stream) {
          if (stream._handle && stream.isTTY && typeof  //***HERE IS POINT
               stream._handle.setBlocking === 'function') {
                   stream._handle.setBlocking(blocking)
                     }
                 })
              }
      }).call(this,require('_process'));

以下是此问题的一些指南node-processbrowserify

0 个答案:

没有答案