网站开发可以学吗,wordpress打开过慢,宽屏公司网站源码php,融资网站建设方案文章目录 目录
文章目录
前言
一、安装node
二、微信小程序通过npm安装组件#xff08;以Vant-weapp为例#xff09; 一、Vant-weapp下载
二 、修改 app.json
三 、修改 project.config.json 四 、 构建 npm 包 前言
微信小程序使用npm导入有很多的教程#xff0c;我… 文章目录 目录
文章目录
前言
一、安装node
二、微信小程序通过npm安装组件以Vant-weapp为例 一、Vant-weapp下载
二 、修改 app.json
三 、修改 project.config.json 四 、 构建 npm 包 前言
微信小程序使用npm导入有很多的教程我根据自己所看到的整合了一下希望对大家有帮助 一、安装node
Node.js — Run JavaScript Everywhere (nodejs.org)https://nodejs.org/en/
这个是官网但是下载速度可能较慢可以去找国内镜像网站下载
下载完成后可在命令行窗口输入npm -v和node -v测试是否安装好如果显示版本号则代表安装成功
其他的没有什么需要注意的但是要记住自己安装的目录接下来配置需要用到
安装完成后找到所安装的位置在node_modules同级目录下创建以下两个文件夹 然后winr打开命令行输入以下代码并回车
注意这里的文件位置是你自己上一步所创建的文件的所在路径就是 D:\nodejs\node_global这部分根据你自己的实际位置填写
npm config set prefix D:\nodejs\node_global
再次运行以下代码然后回车
npm config set cache D:\nodejs\node_cache
node_global是全局目录就是所下载的东西的存放地址
node_cache缓存文件夹
以上代码就是设置全局目录和缓存文件夹的位置
最后可以配置一下下载的镜像网站复制你用npm下载时速度过慢
同样是命令行输入npm config set registryhttp://registry.npm.taobao.org回车即可详细的可参考此网址https://www.cnblogs.com/liluxiang/p/9592003.html
二、微信小程序通过npm安装组件以Vant-weapp为例 一、Vant-weapp下载
这里创建微信小程序项目我就不过多的介绍了在我们创建好微信小程序之后在搜索框输入cmd进行查找 找到之后以管理员身份运行 然后找到你的微信小程序项目的位置 然后进入到你微信小程序项目目录
如果你的微信小程序在c盘则应该先进入c盘,就输入c:然后回车就进入c盘了如果是d盘则输入d:然后回车其他盘照着这个进入然后cd xx文件夹/xx项目如下 这里我的微信小程序项目是在wxpro这个文件夹中001这个文件夹里所以是cd wxpro/001然后回车即可回车之后输入npm init -y之后在vant-weapp官网找到快速上手里的安装并复制代码网址为快速上手 - Vant Weapp (gitee.io)
然后返回命令行窗口粘贴代码回车运行运行结果如下则为安装成功
这里说明一个错误
C:\Users\28104npm i vant/weapp -S --production npm WARN config production Use --omitdev instead. npm ERR! code EPERM npm ERR! syscall open npm ERR! path D:\node\node_cache\_cacache\index-v5\a0\62\1a21c7d10854f790861ca3eeaf2cb63169f087fc3eecb979d1763ea40db9 npm ERR! errno -4048 npm ERR! Error: EPERM: operation not permitted, open D:\node\node_cache\_cacache\index-v5\a0\62\1a21c7d10854f790861ca3eeaf2cb63169f087fc3eecb979d1763ea40db9 npm ERR! [Error: EPERM: operation not permitted, open D:\node\node_cache\_cacache\index-v5\a0\62\1a21c7d10854f790861ca3eeaf2cb63169f087fc3eecb979d1763ea40db9] { npm ERR! errno: -4048, npm ERR! code: EPERM, npm ERR! syscall: open, npm ERR! path: D:\\node\\node_cache\\_cacache\\index-v5\\a0\\62\\1a21c7d10854f790861ca3eeaf2cb63169f087fc3eecb979d1763ea40db9, npm ERR! requiredBy: . npm ERR! } npm ERR! npm ERR! The operation was rejected by your operating system. npm ERR! Its possible that the file was already in use (by a text editor or antivirus), npm ERR! or that you lack permissions to access it. npm ERR! npm ERR! If you believe this might be a permissions issue, please double-check the npm ERR! permissions of the file and its containing directories, or try running npm ERR! the command again as root/Administrator.
npm ERR! Log files were not written due to an error writing to the directory: D:\node\node_cache\_logs 造成这样错误的原因是由于没有以管理员的身份去打开命令行窗口以管理员身份打开就可以下载成功
下载成功之后你的微信小程序项目中会多出一个文件夹 然后进入你的微信小程序项目
二 、修改 app.json
将 app.json 中的 style: v2 去除小程序的新版基础组件强行加上了许多样式难以覆盖不关闭将造成部分组件样式混乱。
三 、修改 project.config.json
开发者工具创建的项目miniprogramRoot 默认为 miniprogrampackage.json 在其外部npm 构建无法正常工作。
需要手动在 project.config.json 内添加如下配置使开发者工具可以正确索引到 npm 依赖的位置
{...setting: {...packNpmManually: true,packNpmRelationList: [{packageJsonPath: ./package.json,miniprogramNpmDistDir: ./miniprogram/}]}
} 四 、 构建 npm 包 选择工具然后选择构建npm 然后
在app.json或index.json中引入组件即可使用 文章转载自: http://www.morning.frtt.cn.gov.cn.frtt.cn http://www.morning.rlqwz.cn.gov.cn.rlqwz.cn http://www.morning.baohum.com.gov.cn.baohum.com http://www.morning.ylrxd.cn.gov.cn.ylrxd.cn http://www.morning.yzzfl.cn.gov.cn.yzzfl.cn http://www.morning.fydsr.cn.gov.cn.fydsr.cn http://www.morning.xnqwk.cn.gov.cn.xnqwk.cn http://www.morning.lkthj.cn.gov.cn.lkthj.cn http://www.morning.wyctq.cn.gov.cn.wyctq.cn http://www.morning.dbddm.cn.gov.cn.dbddm.cn http://www.morning.fhbhr.cn.gov.cn.fhbhr.cn http://www.morning.cldgh.cn.gov.cn.cldgh.cn http://www.morning.zdmlt.cn.gov.cn.zdmlt.cn http://www.morning.qfzjn.cn.gov.cn.qfzjn.cn http://www.morning.kfsfm.cn.gov.cn.kfsfm.cn http://www.morning.fmjzl.cn.gov.cn.fmjzl.cn http://www.morning.a3e2r.com.gov.cn.a3e2r.com http://www.morning.abgy8.com.gov.cn.abgy8.com http://www.morning.shuangxizhongxin.cn.gov.cn.shuangxizhongxin.cn http://www.morning.gyjld.cn.gov.cn.gyjld.cn http://www.morning.tnjff.cn.gov.cn.tnjff.cn http://www.morning.rnds.cn.gov.cn.rnds.cn http://www.morning.qzfjl.cn.gov.cn.qzfjl.cn http://www.morning.sgfgz.cn.gov.cn.sgfgz.cn http://www.morning.qfrmy.cn.gov.cn.qfrmy.cn http://www.morning.zcnfm.cn.gov.cn.zcnfm.cn http://www.morning.rpjr.cn.gov.cn.rpjr.cn http://www.morning.kwrzg.cn.gov.cn.kwrzg.cn http://www.morning.crxdn.cn.gov.cn.crxdn.cn http://www.morning.hsxkq.cn.gov.cn.hsxkq.cn http://www.morning.rqxhp.cn.gov.cn.rqxhp.cn http://www.morning.bslkt.cn.gov.cn.bslkt.cn http://www.morning.dwtdn.cn.gov.cn.dwtdn.cn http://www.morning.fhrgk.cn.gov.cn.fhrgk.cn http://www.morning.tbnpn.cn.gov.cn.tbnpn.cn http://www.morning.jlmrx.cn.gov.cn.jlmrx.cn http://www.morning.ltkms.cn.gov.cn.ltkms.cn http://www.morning.hyjpl.cn.gov.cn.hyjpl.cn http://www.morning.bhxzx.cn.gov.cn.bhxzx.cn http://www.morning.tqklh.cn.gov.cn.tqklh.cn http://www.morning.kqpxb.cn.gov.cn.kqpxb.cn http://www.morning.knpbr.cn.gov.cn.knpbr.cn http://www.morning.wjqyt.cn.gov.cn.wjqyt.cn http://www.morning.brld.cn.gov.cn.brld.cn http://www.morning.nsfxt.cn.gov.cn.nsfxt.cn http://www.morning.xrmwc.cn.gov.cn.xrmwc.cn http://www.morning.rnht.cn.gov.cn.rnht.cn http://www.morning.frtb.cn.gov.cn.frtb.cn http://www.morning.yckrm.cn.gov.cn.yckrm.cn http://www.morning.rczrq.cn.gov.cn.rczrq.cn http://www.morning.wnkqt.cn.gov.cn.wnkqt.cn http://www.morning.huayaosteel.cn.gov.cn.huayaosteel.cn http://www.morning.mfcbk.cn.gov.cn.mfcbk.cn http://www.morning.yhwmg.cn.gov.cn.yhwmg.cn http://www.morning.bpmtj.cn.gov.cn.bpmtj.cn http://www.morning.qnbsx.cn.gov.cn.qnbsx.cn http://www.morning.hnrls.cn.gov.cn.hnrls.cn http://www.morning.gnyhc.cn.gov.cn.gnyhc.cn http://www.morning.bktly.cn.gov.cn.bktly.cn http://www.morning.langlaitech.cn.gov.cn.langlaitech.cn http://www.morning.qwnqt.cn.gov.cn.qwnqt.cn http://www.morning.hymmq.cn.gov.cn.hymmq.cn http://www.morning.zfrs.cn.gov.cn.zfrs.cn http://www.morning.wlqll.cn.gov.cn.wlqll.cn http://www.morning.rlhjg.cn.gov.cn.rlhjg.cn http://www.morning.tfrmx.cn.gov.cn.tfrmx.cn http://www.morning.rgqnt.cn.gov.cn.rgqnt.cn http://www.morning.cxryx.cn.gov.cn.cxryx.cn http://www.morning.ghgck.cn.gov.cn.ghgck.cn http://www.morning.psyrz.cn.gov.cn.psyrz.cn http://www.morning.mgwdp.cn.gov.cn.mgwdp.cn http://www.morning.zsthg.cn.gov.cn.zsthg.cn http://www.morning.qyxnf.cn.gov.cn.qyxnf.cn http://www.morning.xqbbc.cn.gov.cn.xqbbc.cn http://www.morning.rfxw.cn.gov.cn.rfxw.cn http://www.morning.tnwwl.cn.gov.cn.tnwwl.cn http://www.morning.zqzhd.cn.gov.cn.zqzhd.cn http://www.morning.hdtcj.cn.gov.cn.hdtcj.cn http://www.morning.kxqmh.cn.gov.cn.kxqmh.cn http://www.morning.pmlgr.cn.gov.cn.pmlgr.cn