# ucalc-website **Repository Path**: xiaohui_hubei/ucalc-website ## Basic Information - **Project Name**: ucalc-website - **Description**: About 微信小程序【小而美工具】,包含万年历/老黄历/节日节气/亲戚称呼/肥胖评估/儿童生长/青少年身高/手电筒/计算器等小工具,支持深色外观和十多种配色,永久免费。 - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: main - **Homepage**: https://xiaohui_hubei.gitee.io/ucalc-website - **GVP Project**: No ## Statistics - **Stars**: 10 - **Forks**: 0 - **Created**: 2024-03-10 - **Last Updated**: 2025-06-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: 小程序, TARO, React, next ## README # 微信小程序【小而美工具】 [官网站点](https://whinc.github.io/ucalc-website/) | [备用站点(国内推荐)](https://xiaohui_hubei.gitee.io/ucalc-website/) 微信号:`iCloudCoding`

Next js starter banner

### 本地开发 ```bash npm ci # 启动后本地浏览器打开 http://localhost:3000/ucalc-website/ npm run dev ``` ### 部署发布 ```bash # https://whinc.github.io/ucalc-website/ npm run deploy:github # https://xiaohui_hubei.gitee.io/ucalc-website/ npm run deploy:gitee ``` ### 更新图片资源 ```bash # 1.将新增的图片(原始大小)拷贝到 public/assets/screenshots_raw 目录 # 2.执行下面脚本,全量压缩图片 TINYPNG_API_KEY= npm run update-assets # 增量压缩图片,仅 --since 日期之后新增的图片会被压缩 TINYPNG_API_KEY= npm run update-assets -- --since='2024-04-29T10:00:00' ``` > 脚本依赖 zx 工具,请先确保全局安装`npm install -g zx` ### Gitee 为了方便国内用户访问,仓库也同步一份到 Gitee 上 [xiaohui_hubei/ucalc-website](https://gitee.com/xiaohui_hubei/ucalc-website) ```bash git remote add origin-gitee git@gitee.com:xiaohui_hubei/ucalc-website.git git push origin-gitee main ```