{"id":34499181,"url":"https://github.com/authing/authingmove-template","last_synced_at":"2026-05-30T02:31:04.387Z","repository":{"id":54503491,"uuid":"488848413","full_name":"Authing/authingmove-template","owner":"Authing","description":"AuthingMove template, create a project quickly.","archived":false,"fork":false,"pushed_at":"2023-04-26T08:05:58.000Z","size":232,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2023-04-26T09:27:01.994Z","etag":null,"topics":["authing","authingmove","miniprogram"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Authing.png","metadata":{"files":{"readme":"README-zh_CN.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-05-05T05:54:04.000Z","updated_at":"2023-04-26T09:27:01.995Z","dependencies_parsed_at":"2023-01-19T02:45:16.306Z","dependency_job_id":null,"html_url":"https://github.com/Authing/authingmove-template","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/Authing/authingmove-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Authing%2Fauthingmove-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Authing%2Fauthingmove-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Authing%2Fauthingmove-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Authing%2Fauthingmove-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Authing","download_url":"https://codeload.github.com/Authing/authingmove-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Authing%2Fauthingmove-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27992995,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-23T02:00:07.087Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["authing","authingmove","miniprogram"],"created_at":"2025-12-24T01:58:28.529Z","updated_at":"2025-12-24T01:58:34.625Z","avatar_url":"https://github.com/Authing.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=center\u003e\n  \u003cimg width=\"250\" src=\"https://files.authing.co/authing-console/authing-logo-new-20210924.svg\" /\u003e\n\u003c/div\u003e\n\n\u003cbr /\u003e\n\n简体中文 | [English](https://github.com/Authing/authingmove-template/blob/master/README.md)\n\n\u003cdiv\u003eAuthingMove 是一款小程序 API 转换器，基于微信小程序 API 语法写一份代码，可同时被编译转换适配其他小程序平台 \u0026 小程序框架 \u0026 快应用。\u003c/div\u003e\n\n\u003cbr /\u003e\n\n\u003cdiv\u003e你可以使用 \u003ca taraget=\"_blank\" href=\"https://github.com/Authing/AuthingMove#quick-start\"\u003eCLI\u003c/a\u003e 快速创建一个项目. 接下来，我们将会添加更多的功能。\u003c/div\u003e\n\n## 使用方式\n```\n// 第一步:\n// import AuthingMove runtime packages\n\nimport AuthingMove from '@authing/authingmove-core'\nimport apiProxy from '@authing/authingmove-api-proxy'\n\nAuthingMove.use(apiProxy)\n\n// 第二步:\n// 你的业务代码\n// 使用方式与小程序 API 语法一致\n\n// 另外:\n// 支持 TS 类型提示\n// 所有 API 返回 'Promise'\n\nAuthingMove.request({}).then(res =\u003e {})\n\nAuthingMove.setStorage({}).catch(res =\u003e {})\nAuthingMove.getStorage({}).catch(res =\u003e {})\nAuthingMove.removeStorage({}).catch(res =\u003e {})\nAuthingMove.clearStorage({}).then(res =\u003e {})\n\nAuthingMove.login().then(res =\u003e {})\n\n// ------- 当然，你也可以使用 callback 而不是 Promise -------\nAuthingMove.scanCode({\n  success: res =\u003e {}\n})\n\n// ..............\n```\n\n## 安装 \u0026 构建\n```\nnpm ci\nnpm run dev\nnpm run prod\n```\n\n## 问题反馈\n\n如果需要在线技术支持，可访问[官方论坛](https://forum.authing.cn/). 此仓库的 issue 仅用于上报 Bug 和提交新功能特性。\n\n## 开源共建\n\n- Fork 此仓库\n- 创建自己的 git 分支 (git checkout -b my-new-feature)\n- 提交你的修改 (git commit -am 'Add some feature')\n- 将修改内容推送到远程分支 (git push -u origin my-new-feature)\n- 创建一个 Pull Request\n\n## 开源许可\n\n[MIT](https://github.com/Authing/authingmove-template/blob/master/LICENSE)\n\nCopyright (c) 2022 Authing\n\n## 友情链接\n\n- [AuthingMove](https://github.com/Authing/AuthingMove)\n- [eslint-plugin-authing-nestjs](https://github.com/authing/eslint-plugin-authing-nestjs/)\n- [password-encryption](https://github.com/Authing/password-encryption)\n- [authing-js-sdk](https://github.com/Authing/authing-js-sdk)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthing%2Fauthingmove-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauthing%2Fauthingmove-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthing%2Fauthingmove-template/lists"}