Show pageOld revisionsBacklinksFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Write a JavaScript SDK ====== ===== Developing ===== ==== Project Structure ==== <codeprism> . ├── dist ├── src │ ├── core // 核心代码 │ ├── modules // 模块 │ │ ├── a // 单个模块,里面写接口 │ │ ├── b │ │ └── index.js │ ├── platform // 平台 │ │ ├── h5 // h5 │ │ └── zfb // 支付宝小程序 │ ├── index.ts // h5入口 │ └── index.zfb.ts // 支付宝小程序入口 ├── package.json ├── README.md └── rollup.config.js // rollup配置 </codeprism> ===== Others ===== Init project with [[pnpm|pnpm]]. Documented with [[vitepress|Vite Press]]. Test with jest. Typescript Configuration. ===== References ===== - [[https://juejin.cn/post/7215155257172000823|封装一个js业务sdk]] write_javascript_jdk.txt Last modified: 2024/12/26 11:12by lingao