跳到主要内容

介绍

云开发 manager-node sdk 支持开发者通过接口形式对云开发提供的云函数、数据库、文件存储等资源进行创建、管理、配置等操作。更多源码内容请参见 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,可在腾讯云-云开发控制台获取
})

// 获取各功能模块
const { database, functions, storage, env, commonService } = app