Childhood,23款童年卡牌游戏复刻

发布时间:2026/6/23 11:40:27
Childhood,23款童年卡牌游戏复刻 卡牌游戏刀杀鸡龙虎斗兽棋军师旅团营猫捉老鼠小皇帝经典棋盘游戏中国象棋国际象棋军棋棋盘版五子棋黑白棋国际跳棋井字棋中国跳棋围棋欢乐骰子游戏飞行棋童年棋盘游戏狼吃羊憋茅坑小猫钓鱼钻牛角尖摆四龙蚂蚁搬家四步钉项目结构childhood/ ├── apps/ │ ├── card-game/ # 童年经典卡牌游戏 │ │ ├── knife-kills-chicken/ # 刀杀鸡 │ │ ├── dragon-tiger-fight/ # 龙虎斗 │ │ ├── animal-chess/ # 兽棋 │ │ ├── chinese-army-chess/ # 军师旅团营 │ │ ├── cat-and-mouse/ # 猫捉老鼠 │ │ └── little-emperor/ # 小皇帝 │ ├── board-game/ # 经典棋盘游戏 │ │ ├── chinese-chess/ # 中国象棋 │ │ ├── international-chess/ # 国际象棋 │ │ ├── chinese-army-chess/ # 军棋棋盘版 │ │ ├── gomoku/ # 五子棋 │ │ ├── reversi/ # 黑白棋 │ │ ├── checkers/ # 国际跳棋 │ │ ├── tic-tac-toe/ # 井字棋 │ │ ├── chinese-checkers/ # 中国跳棋 │ │ └── go/ # 围棋 │ ├── dice-game/ # 欢乐骰子游戏 │ │ └── flying-chess/ # 飞行棋 │ ├── childhood-board-game/ # 童年棋盘游戏 │ │ ├── lang-chi-yang/ # 狼吃羊 │ │ ├── bie-mao-keng/ # 憋茅坑 │ │ ├── xiao-mao-diao-yu/ # 小猫钓鱼 │ │ ├── zuan-niu-jiao-jian/ # 钻牛角尖 │ │ ├── bai-si-long/ # 摆四龙 │ │ ├── ma-yi-ban-jia/ # 蚂蚁搬家 │ │ └── si-bu-ding/ # 四步钉 │ └── common/ # 共享模块 │ ├── card-game-core.js # 卡牌游戏核心逻辑 │ └── game-utils.js # 游戏工具函数 ├── js/ # 全局 JavaScript ├── css/ # 全局样式 ├── images/ # 图片资源 ├── index.html # 入口页面 └── package.json # 项目配置快速开始# 克隆项目 git clone https://github.com/jiangxincode/childhood.git cd childhood # 安装依赖 npm install直接用浏览器打开index.html即可或者npx serve后访问http://localhost:3000运行测试# 执行全部测试 npm test # 监听模式 npm run test:watch