first commit

This commit is contained in:
wangminngg
2025-12-02 17:41:15 +08:00
commit 2bc32c2e6b
23 changed files with 4913 additions and 0 deletions

20
install-with-cnpm.bat Normal file
View File

@@ -0,0 +1,20 @@
@echo off
REM filepath: /c:/Users/Administrator/Desktop/ffi-napi/install-with-cnpm.bat
echo 使用 cnpm 安装依赖...
echo.
echo 步骤 1: 安装 cnpm...
call npm install -g cnpm --registry=https://registry.npmmirror.com
echo.
echo 步骤 2: 清理旧文件...
if exist node_modules rmdir /s /q node_modules
if exist package-lock.json del /f /q package-lock.json
echo.
echo 步骤 3: 使用 cnpm 安装依赖...
call cnpm install
echo.
echo 安装完成!
pause