第一步:npm config get prefix ,获取输出path“C:\Users\jaxGu\AppData\Roaming\npm”加上"\node_modules"用于第二步值 第二步:添加系统环境变量:NODE_PATH:C:\Users\jaxGu\AppData\Roaming\npm\node_modules 第三步:关掉命令行,重新打开.…
在webpack的管理输出的部分,设定HtmlWebpackPlugin部分,运行npm run build 会报错 Error: Cannot find module 'webpack/lib/node/NodeTemplatePlugin' 解决方法: npm install webpack npm install -D webpack-cli 接着再运行 npm run build 执行成功!!!!!!!!…
当我配置了html-webpack-plugin 打包时报了这个错,查看了一下package.json发现没有webpack,说明使用了全局安装的webapck,导致的版本差异. 这里在本地安装webpack  cnpm install --save-dev webpack  即可解决问题 --save-dev 的意思开发环境中依赖的插件,比如用来打包的webpack,会更新写入package.json文件的 devDependencies --save 的意思是上线后也依赖的插件 比如vue,…
gyp ERR! configure error gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable. gyp ERR! stack at failNoPython (C:\Users\guxuelong\Desktop\dragon-ui\node_modules\.npminstall\node-gyp\3.3.1\node-gyp\lib\…
===>首先需要使用https<===https://ruby.taobao.org/ 第一步 下载http://pan.baidu.com/s/1kU0rxtH 复制到ruby安装的根目录 第二步 添加系统环境变量: SSL_CERT_FILE=ruby的根目录加\cacert.pem(类似C:\Ruby22-x64\cacert.pem) 第三步 关闭命令行,重新打开,重新键入 gem sources -a https://ruby.taobao.org/…
不废话直接上代码: HTML: <a class="js-tel tel" data-tel="1312414"></a> JS: // zepto tel $('body').on('tap', '.js-tel', function() { var _this = $(this); if (!_this.attr('href')) { _this.attr('href', 'tel:' + _this.data('tel')); _thi…
Malformed lock file found: /var/cache/dnf/metadata_lock.pid.Ensure no other dnf process is running and remove the lock file manually or run systemd-tmpfiles --remove dnf.conf.[root@jaxGu ajaxGu]# systemd-tmpfiles --remove dnf.conf 英文不好看不懂的有木有,网上搜出来全部…
用gulp启动,错误如下 Error: watch ENOSPC at exports._errnoException (util.js:746:11) at FSWatcher.start (fs.js:1172:11) at Object.fs.watch (fs.js:1198:11) at Gaze._watchDir (/home/ajaxGu/work/froad/anhui-standard/personal-h5/node_modules/gulp/node_modules/vi…
这是因为  app.use(function * (){ 语句中有一个 * ,这种方式被称为generator functions ,一般写作function *(){...} 的形式,在此类function 中可以支持ES6的一种yield概念. 为了保证这种新型的方法可以编译通过,在运行node 命令的时候加上一个harmony参数就可以了: node --harmony hello.js 假如在插件中使用的化可以引入harmony 并自执行. harmonize = require('ha…
深入浅出webpack 1.5章节使用Extract-text-webpack-plugin分离css 安装插件后打包提示错误 Error: Cannot find module 'webpack/lib/Chunk' 可能是webpack是4.X的原因 跟随书中步骤安装webpack会安装最新版也就是4.X版本,但是Extract-text-webpack-plugin目前(2019.3.12)仅支持到webpack3.X,想要使用的话 一种方法是使用3.x版本的webpack 另一种是使用测…