美文网首页
electron-安装

electron-安装

作者: 778bc750a218 | 来源:发表于2020-06-19 21:00 被阅读0次

    sudo npm install -g cnpm --registry=https://registry.npm.taobao.org
    cnpm install -g electron

    cnpm install node-json-rpc

    https://ziahamza.github.io/webui-aria2/

      fmtsize: function(e) {
                  return (e = +e) <= 1024
                    ? e.toFixed(0) + " B"
                    : (e /= 1024) <= 1024
                      ? e.toFixed(1) + " KB"
                      : (e /= 1024) <= 1024
                        ? e.toFixed(2) + " MB"
                        : (e /= 1024).toFixed(3) + " 
    }
    

    相关文章

      网友评论

          本文标题:electron-安装

          本文链接:https://www.haomeiwen.com/subject/kapbxktx.html