{"id":13459670,"url":"https://github.com/lifeparticle/Vercel-Cheatsheet","last_synced_at":"2025-03-24T18:31:10.052Z","repository":{"id":78268894,"uuid":"324926299","full_name":"lifeparticle/Vercel-Cheatsheet","owner":"lifeparticle","description":"Vercel Cheatsheet","archived":false,"fork":false,"pushed_at":"2020-12-28T09:12:14.000Z","size":12,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-08-01T10:19:19.771Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/lifeparticle.png","metadata":{"files":{"readme":"README.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["lifeparticle"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2020-12-28T06:06:27.000Z","updated_at":"2023-04-01T14:52:56.000Z","dependencies_parsed_at":"2023-03-08T07:15:29.045Z","dependency_job_id":null,"html_url":"https://github.com/lifeparticle/Vercel-Cheatsheet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lifeparticle%2FVercel-Cheatsheet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lifeparticle%2FVercel-Cheatsheet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lifeparticle%2FVercel-Cheatsheet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lifeparticle%2FVercel-Cheatsheet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lifeparticle","download_url":"https://codeload.github.com/lifeparticle/Vercel-Cheatsheet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221995746,"owners_count":16913553,"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","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":"2024-07-31T10:00:24.385Z","updated_at":"2024-10-29T05:31:13.596Z","avatar_url":"https://github.com/lifeparticle.png","language":null,"funding_links":["https://github.com/sponsors/lifeparticle"],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# Introduction\n\n1. [Vercel CLI](https://vercel.com/download)\n  - [Documentation](https://vercel.com/docs/cli)\n2. [Configuration](https://vercel.com/docs/configuration)\n3. [Runtimes](https://vercel.com/docs/runtimes)\n\n- [Officially supported runtimes](https://vercel.com/docs/runtimes#official-runtimes)\n\n1. [Node.js](https://www.npmjs.com/package/@vercel/node)\n```json\n{\n  \"functions\": {\n      \"api/*.js\": { \"runtime\": \"@vercel/node@1.8.5\" }\n  }\n}\n```\n\n2. [Go](https://www.npmjs.com/package/@vercel/go)\n```json\n{\n  \"functions\": {\n      \"api/*.go\": { \"runtime\": \"@vercel/go@1.1.6\" }\n  }\n}\n```\n\n3. [Python](https://www.npmjs.com/package/@vercel/python)\n```json\n{\n  \"functions\": {\n      \"api/*.py\": { \"runtime\": \"@vercel/python@1.2.3\" }\n  }\n}\n```\n\n4. [Ruby](https://www.npmjs.com/package/@vercel/ruby)\n```json\n{\n  \"functions\": {\n      \"api/*.rb\": { \"runtime\": \"@vercel/ruby@1.2.4\" }\n  }\n}\n```\n\n- [Community Runtimes](https://vercel.com/docs/runtimes#advanced-usage/community-runtimes)\n\n1. [PHP](https://www.npmjs.com/package/vercel-php)\n\n```json\n{\n  \"functions\": {\n    \"api/*.php\": { \"runtime\": \"vercel-php@0.3.1\" }\n  },\n  \"routes\": [\n    { \"src\": \"/(.*)\",  \"dest\": \"/api/index.php\" }\n  ]\n}\n```\n\n2. [Bash](https://www.npmjs.com/package/vercel-bash)\n\n```json\n{\n  \"functions\": {\n      \"api/*.sh\": { \"runtime\": \"vercel-bash@3.0.7\" }\n  }\n}\n```\n\n3. [Deno](https://www.npmjs.com/package/vercel-deno)\n```json\n{\n  \"functions\": {\n      \"api/**/*.[jt]s\": { \"runtime\": \"vercel-deno@0.7.6\" }\n  }\n}\n```\n\n4. [Rust](https://www.npmjs.com/package/vercel-rust)\n```json\n{\n  \"functions\": {\n      \"api/*.rs\": { \"runtime\": \"@vercel/vercel-rust@0.0.35\" }\n  }\n}\n```\n\n# Examples\n1. [Ruby](https://github.com/lifeparticle/vercel-cheatsheet/tree/main/ruby)\n2. [Python](https://github.com/lifeparticle/vercel-cheatsheet/tree/main/python)\n3. [PHP](https://github.com/lifeparticle/vercel-cheatsheet/tree/main/php)\n\nBug Reports and Feature Requests\n============\nPlease create an issue with as much information you can. Thank you.\n\nAuthor\n============\nMahbub Zaman (https://mahbub.ninja)\n\nLicense\n============\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flifeparticle%2FVercel-Cheatsheet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flifeparticle%2FVercel-Cheatsheet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flifeparticle%2FVercel-Cheatsheet/lists"}