codecamp

fundebug-cli批量上传

fundebug-cli是Fundebug的命令行工具

安装

请先安装Node.js

npm install fundebug-cli -g

若国外的NPM速度太慢的话,可以使用淘宝NPM镜像安装:

npm install fundebug-cli -g --registry=https://registry.npm.taobao.org
批量上传Source Map
fundebug-cli upload --apikey "API-KEY" --directory dist/
  • apikey: 获取apikey需要免费注册帐号并且创建项目
  • directory: Source Map文件所在的目录,该目录中的.map文件将全部被上传,这里会遍历所有子目录。
设置应用版本
fundebug-cli upload --apikey "API-KEY" --appversion 1.0.0 --directory dist/
  • appversion: 可选参数,用于配置应用版本

若希望区分不同版本的Source Map,则在接入Fundebug时,必须配置对应的appversion属性,并在代码更新时及时更新。


API上传
notifyError
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

接入插件

NPM

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }