npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sut-sdk

v1.0.6

Published

SUTX SDK - 集成用户余额查询、URL文件转存到Coze平台和Cloudflare R2 OSS存储的工具库

Downloads

28

Readme

SUT SDK

SUTX SDK - 集成用户余额查询、URL文件转存到Coze平台和Cloudflare R2 OSS存储的工具库

功能特性

  • 用户余额查询 - 获取用户账户余额信息
  • URL 文件转存到 Coze - 将任意 URL 的文件转存到 Coze 平台
  • CF R2 OSS 存储 - 将文件转存到 Cloudflare R2 对象存储(CDN 加速)
  • 自定义日志 - 支持自定义日志记录器
  • 进度回调 - 文件转存时支持进度回调
  • 双环境支持 - 同时支持 Node.js 和浏览器环境
  • TypeScript 支持 - 完整的类型定义文件

安装

npm install sut-sdk

快速开始

使用 SUTX 类(推荐)

const { SUTX } = require('sut-sdk');

// 创建实例
const sutx = new SUTX('your_api_token');

// 获取余额
const result = await sutx.getUserMoney();
if (result.code === 200) {
  console.log('余额信息:', result.data);
}

// URL 转存到 Coze
const newUrl = await sutx.urlToCoze('https://example.com/image.jpg', {
  onProgress: (status) => console.log(status)
});
console.log('新链接:', newUrl);

// URL 转存到 CF R2 OSS
const ossResult = await sutx.urlToCfOss('https://example.com/image.jpg', {
  onProgress: (status) => console.log(status)
});
console.log('OSS 链接:', ossResult.publicUrl);

使用单独的函数

const { getUserMoney, urlToCoze, urlToCfOss } = require('sut-sdk');

// 获取余额
const result = await getUserMoney('your_api_token');

// URL 转存
const newUrl = await urlToCoze('https://example.com/image.jpg');

TypeScript 支持

import { SUTX, UserMoneyResponse, CfR2UploadResult } from 'sut-sdk';

const sutx = new SUTX('your_api_token');

const result: UserMoneyResponse = await sutx.getUserMoney();
const ossResult: CfR2UploadResult = await sutx.urlToCfOss('https://example.com/image.jpg');

详细文档

License

MIT