# aliyun-pds-js-sdk **Repository Path**: aliyun/aliyun-pds-js-sdk ## Basic Information - **Project Name**: aliyun-pds-js-sdk - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-08 - **Last Updated**: 2025-06-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ALIYUN-PDS-JS-SDK > PDS SDK for both Node.js and Javascript in browser. 详情请看: https://help.aliyun.com/document_detail/393346.html For more information, see: https://help.aliyun.com/document_detail/393346.html ## Usage ### Node.js ``` npm i -S aliyun-pds-js-sdk ``` ```js const {PDSClient} = require('aliyun-pds-js-sdk') // or ES Import import {PDSClient} from 'aliyun-pds-js-sdk' ``` ### Browser * via script tag ```html ``` ```js const {PDSClient} = window.PDS_SDK ``` * or ES Import ```js // 前端使用: import {PDSClient} from 'aliyun-pds-js-sdk/browser' // for Frontend Project ``` ## Example `PDS` API 的功能都集成在 `PDSClient` 类实例方法上,使用时只需 `new` 一个 `PDSClient` 实例,即可通过该实例的方法来调用 `PDS` 的各种 API。 ```js const client = new PDSClient({ token_info, api_endpoint: `https://${domain_id}.api.aliyunpds.com`, auth_endpoint: `https://${domain_id}.auth.aliyunpds.com`, // path_type: 'StandardMode' }) const {items = [], next_marker} = await client.listFiles({ drive_id: '1', parent_file_id: 'root' }) ``` 更加详细的介绍,请看[阿里云官网的帮助文档](https://help.aliyun.com/document_detail/393346.html)。 ## Release notes [RELEASE-NOTES.md](RELEASE-NOTES.md) ## LICENSE [The MIT License](LICENSE)