{"id":43543316,"url":"https://github.com/devsapp/start-fc","last_synced_at":"2026-02-03T18:37:47.626Z","repository":{"id":37742582,"uuid":"433018594","full_name":"devsapp/start-fc","owner":"devsapp","description":"阿里云函数计算Hello World模板","archived":false,"fork":false,"pushed_at":"2025-03-28T05:04:47.000Z","size":30293,"stargazers_count":75,"open_issues_count":4,"forks_count":36,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-03-28T06:19:51.889Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devsapp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-29T11:38:02.000Z","updated_at":"2025-03-28T05:04:52.000Z","dependencies_parsed_at":"2023-11-22T16:15:06.104Z","dependency_job_id":"950b92de-66c4-42d2-88ed-2051a7231ba8","html_url":"https://github.com/devsapp/start-fc","commit_stats":null,"previous_names":[],"tags_count":78,"template":false,"template_full_name":null,"purl":"pkg:github/devsapp/start-fc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsapp%2Fstart-fc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsapp%2Fstart-fc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsapp%2Fstart-fc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsapp%2Fstart-fc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devsapp","download_url":"https://codeload.github.com/devsapp/start-fc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsapp%2Fstart-fc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29052639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T15:43:47.601Z","status":"ssl_error","status_checked_at":"2026-02-03T15:43:46.709Z","response_time":96,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-02-03T18:37:42.170Z","updated_at":"2026-02-03T18:37:47.616Z","avatar_url":"https://github.com/devsapp.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 阿里云函数计算：FC 3.0 案例\n\n![图片alt](https://serverless-article-picture.oss-cn-hangzhou.aliyuncs.com/1638188206727_20211129121647053051.png)\n\n\u003e 注意，如果您使用函数计算2.0，请切换到 V2 分支\n\n## 本地快速体验\n\n通过该应用，您可以简单快速的创建一个 FC 案例到阿里云函数计算服务。\n\n- 下载命令行工具：`npm install -g @serverless-devs/s`\n- 初始化一个模版项目：`s init start-fc3-python -d start-fc3-python`\n- 进入项目后部署项目：`cd start-fc3-python \u0026\u0026 s deploy`\n\n## 包含内容\n\n### 标准 Runtime\n\n#### nodejs\n\n- [start-fc3-nodejs-es](./fc-node/hello-world-es/src) (ES Module)\n\n- [start-fc3-nodejs](./fc-node/hello-world/src) (CommonJS Module)\n\n- [start-fc3-nodejs-json](./fc-node/json-event/src)\n\n- [start-fc3-nodejs-oss](./fc-node/oss-event/src)\n\n- [start-fc3-nodejs-exec](./fc-node/exec-command/src)\n\n- [start-fc3-nodejs-http](./fc-node/simple-http/src)\n\n#### python\n\n- [start-fc3-python](./fc-python/hello-world/src)\n\n- [start-fc3-python-http](./fc-python/simple-http/src)\n\n#### java\n\n- [start-fc3-java](./fc-java/hello-world/src)\n  \n- [start-fc3-java-http](./fc-java/simple-http/src)\n\n#### golang\n\n- [start-fc3-golang](./fc-golang/hello-world/src)\n\n- [start-fc3-golang-http](./fc-golang/simple-http/src)\n\n#### php\n\n- [start-fc3-php](./fc-php/hello-world/src/)\n\n- [start-fc3-php-http](./fc-php/simple-http/src/)\n\n#### .Net\n\n- [start-fc3-dotnetcore](./fc-dotnetcore/hello-world/src)\n\n- [start-fc3-dotnetcore-http](./fc-dotnetcore/simple-http/src)\n\n### Custom Runtime\n\n- [start-fc3-custom-nodejs](./custom/nodejs/src)\n\n- [start-fc3-custom-python](./custom/python/src)\n\n- [start-fc3-custom-golang](./custom/golang/src)\n\n- [start-fc3-custom-java](./custom/java/src)\n\n### Custom Container\n\n- [start-fc3-custom-container-nodejs](./custom-container/nodejs/src)\n\n- [start-fc3-custom-container-python](./custom-container/python/src)\n\n- [start-fc3-custom-container-golang](./custom-container/golang/src)\n\n- [start-fc3-custom-container-java](./custom-container/java/src)\n\n## Custom Domain\n\n- [fc-custom-domain](./fc-custom-domain/src)\n\n---\n\u003e\n\u003e - Serverless Devs 项目：\u003chttps://www.github.com/serverless-devs/serverless-devs\u003e\n\u003e - Serverless Devs 钉钉交流群：33947367\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsapp%2Fstart-fc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevsapp%2Fstart-fc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsapp%2Fstart-fc/lists"}