云开发 manager-node 支持开发者通过接口形式对云开发提供的云函数、数据库、文件存储等资源进行创建、管理、配置等操作。更多源码内容请参见 cloudbase-manager-node。
npm
npm install @cloudbase/manager-node
yarn
yarn add @cloudbase/manager-node
要在你的代码内使用该模块:
const CloudBase = require('@cloudbase/manager-node')
或
import CloudBase from '@cloudbase/manager-node'
初始化
const app = CloudBase.init({
secretId: 'Your SecretId',
secretKey: 'Your SecretKey',
token: 'Your SecretToken', // 使用临时凭证需要此字段
envId: 'Your envId' // 云环境 ID,可在腾讯云-云开发控制台获取
})
请访问新的文档站点查看详细的文档。