我们在进行微信小程序云函数开发的时候,有时候不想本地安装,可以直接通过添加依赖完成,云函数会在云端自动完成部署。
但是我们并不知道该库的版本。
以tcb-router路由为例,我们可以按照如下添加依赖
{
"name": "activity",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"mysql2": "^2.2.5",
"silly-datetime": "^0.1.2",
"tcb-router":"latest",
"wx-server-sdk": "^2.3.2"
}
}
网友评论