====== Write a JavaScript SDK ====== ===== Developing ===== ==== Project Structure ==== . ├── 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配置 ===== Others ===== Init project with [[pnpm|pnpm]]. Documented with [[vitepress|Vite Press]]. Test with jest. Typescript Configuration. ===== References ===== - [[https://juejin.cn/post/7215155257172000823|封装一个js业务sdk]]