node
zb0567
这个作者很懒,什么都没留下…
展开
-
IE报vuex requires a Promise polyfill in this browser问题解决
使用Vuex, IE浏览器报错因为使用了 ES6 中用来传递异步消息的的Promise,而IE低版本的浏览器不支持。解决方法第一步: 安装 babel-polyfill 。 babel-polyfill可以模拟ES6使用的环境,可以使用ES6的所有新方法npm install --save babel-polyfill第二步: 在 Webpack/B转载 2017-09-16 11:32:22 · 637 阅读 · 0 评论 -
Module not found: Error: Can't resolve 'sass-loader' in 'D:\vue_test_project\vuedemo\src'
以上错误页面因为没有安装sass-loader解决方法:需要安装安装sass-loader以及node-sass插件才能正常运行npm install sass-loader -Dnpm install node-sass -D原创 2017-09-11 21:48:09 · 22853 阅读 · 2 评论 -
npm太慢, 淘宝npm镜像使用方法
淘宝 npm 地址: http://npm.taobao.org/如何使用 有很多方法来配置npm的registry地址,下面根据不同情境列出几种比较常用的方法。以淘宝npm镜像举例:1.临时使用npm --registry https://registry.npm.taobao.org install express12.持久使用npm config转载 2017-09-11 22:21:20 · 262 阅读 · 0 评论 -
ERROR in Cannot find module 'node-sass'
ERRORin Cannot find module'node-sass'错误表示找不到node-sass模块。网上查了下我是因为cnpm安装导致的,换成npm安装就好或者cnpm install node-sass@latest或者node-sass需要编译环境,我的配置是win7+vs2013+nodejs4.2.6+python2.7.3转载 2017-09-11 22:58:04 · 19833 阅读 · 2 评论 -
%1 is not a valid Win32 application
希望能帮助到你, 怕你着急! 先看解决步骤, 然后在看描述12npm rm node-sassnpm install node-sass 重新安装node-sass模块 /*************************************转载 2017-09-12 14:02:25 · 3973 阅读 · 0 评论 -
记录vue模板始末
renrenfast 人人开源 http://www.renren.io/d2admin https://www.oschina.net/p/D2admin小明项目管理 https://www.vue-js.com/topic/5a668d9e507fb80366319b46 OpenAuth.Net https...原创 2018-06-03 16:27:38 · 283 阅读 · 0 评论 -
npm安装iview
npm i -S iview 安装iview出现npm WARN iview@3.2.2 requires a peer of vue@^2.5.2 but none was installed.输入:npm i -S vue 出现npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.7 (node_modules\f...原创 2019-02-12 19:30:17 · 2293 阅读 · 0 评论 -
npm ERR! code EAUDITNOPJSON npm audit fix 安全问题
found 2504 vulnerabilities (1360 low, 1109 moderate, 29 high, 6 critical) run `npm audit fix` to fix them, or `npm audit` for details然后C:\WINDOWS\system32>npm audit fixnpm ERR! code EAUDITNO...原创 2019-02-14 09:07:45 · 9109 阅读 · 0 评论 -
npm安装babel-plugin-component 按需加载神器。。。
npm install eslint-plugin-node --savenpm install eslint-plugin-promise --savenpm install eslint-plugin-standard --savenpm i eslint-plugin-vue -snpm install eslint --save-devnpm i babel-plug...原创 2019-02-20 17:57:09 · 9103 阅读 · 0 评论