https://github.com/TencentCloudBase/tcb-admin-node
Tencent Cloud Base on Node.js
https://github.com/TencentCloudBase/tcb-admin-node
Last synced: about 1 year ago
JSON representation
Tencent Cloud Base on Node.js
- Host: GitHub
- URL: https://github.com/TencentCloudBase/tcb-admin-node
- Owner: TencentCloudBase
- Archived: true
- Created: 2018-07-20T07:29:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-10T02:20:18.000Z (over 5 years ago)
- Last Synced: 2025-04-21T20:07:30.385Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 904 KB
- Stars: 105
- Watchers: 8
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING_GUIDE.md
Awesome Lists containing this project
README
# Tencent Cloud Base(TCB) Admin Node.js SDK

[](https://www.npmjs.com/package/tcb-admin-node)
[](https://david-dm.org/TencentCloudBase/tcb-admin-node)
[](https://travis-ci.org/TencentCloudBase/tcb-admin-node)
[](https://www.npmjs.com/package/tcb-admin-node)
## 目录
* [介绍](#介绍)
* [安装](#安装)
* [文档](#文档)
## 介绍
TCB提供开发应用所需服务和基础设施。tcb admin Node.js SDK 让你可以在服务端(如腾讯云云函数或CVM等)使用Node.js服务访问TCB的的服务。
需要Node.js v8.0及以上版本。
## 安装
tcb admin Node.js SDK 可以通过`tcb-admin-node`来访问:
```base
npm install --save tcb-admin-node@latest
```
要在你的模块式使用模块可以
```js
var admin = require("tcb-admin-node");
```
或
```js
import * as admin from "tcb-admin-node";
```
## 文档
* [初始化](docs/initialization.md)
* [存储](docs/storage.md)
* [数据库](docs/database.md)
* [云函数](docs/functions.md)
* [鉴权](./docs/auth.md)
* [环境](./docs/env.md)