{"id":13393306,"url":"https://github.com/serverless/multicloud","last_synced_at":"2025-08-19T13:32:23.929Z","repository":{"id":35614342,"uuid":"204778968","full_name":"serverless/multicloud","owner":"serverless","description":"The serverless @multicloud library provides an easy way to write your serverless handlers 1 time and deploy them to multiple cloud providers include Azure \u0026 AWS.","archived":false,"fork":false,"pushed_at":"2023-01-04T13:05:28.000Z","size":5792,"stargazers_count":91,"open_issues_count":93,"forks_count":13,"subscribers_count":25,"default_branch":"master","last_synced_at":"2024-10-29T15:39:41.910Z","etag":null,"topics":["aws","aws-lambda","azure","azure-functions","multicloud","serverless"],"latest_commit_sha":null,"homepage":"https://www.serverless.com","language":"TypeScript","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/serverless.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-08-27T19:49:31.000Z","updated_at":"2024-10-26T18:07:47.000Z","dependencies_parsed_at":"2023-01-16T01:16:03.722Z","dependency_job_id":null,"html_url":"https://github.com/serverless/multicloud","commit_stats":null,"previous_names":[],"tags_count":198,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverless%2Fmulticloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverless%2Fmulticloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverless%2Fmulticloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverless%2Fmulticloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/serverless","download_url":"https://codeload.github.com/serverless/multicloud/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229970857,"owners_count":18152730,"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":["aws","aws-lambda","azure","azure-functions","multicloud","serverless"],"created_at":"2024-07-30T17:00:49.790Z","updated_at":"2024-12-19T00:07:38.525Z","avatar_url":"https://github.com/serverless.png","language":"TypeScript","readme":"**📦 Archived - This repository is archived and preserved for reference only. No updates, issues, or pull requests will be accepted. If you have questions, please reach out to our support team.**\n\n---\n\n# Serverless Multicloud Library\n\nThe Serverless @multicloud library provides an easy way to build Serverless handlers in NodeJS using a cloud agnostic library that can then be deployed to supported cloud providers.\n\nIn addition to a normalized API the @multicloud library supports reusable middleware pipeline similar to the Express framework\n\n## Supported Cloud Providers\nThe following is a list of the currently support cloud providers:\n\n#### Microsoft Azure (@multicloud/sls-azure)\n[![Build Status](https://dev.azure.com/serverless-inc/multicloud/_apis/build/status/CI/%5Bsls-azure%5D%20ci?branchName=dev)](https://dev.azure.com/serverless-inc/multicloud/_build/latest?definitionId=2\u0026branchName=dev)\n\nThe Azure package contains Azure specific implementations of core components.\nSee [Azure readme](./azure/README.md) for additional information\n\n\n#### Amazon Web Services (@multicloud/sls-aws)\n[![Build Status](https://dev.azure.com/serverless-inc/multicloud/_apis/build/status/CI/%5Bsls-aws%5D%20ci?branchName=dev)](https://dev.azure.com/serverless-inc/multicloud/_build/latest?definitionId=1\u0026branchName=dev)\n\nThe AWS package contains AWS specific implementations of core components.\nSee [AWS readme](./aws/README.md) for additional information\n\n### Dependencies\n\n#### Multicloud Core (@multicloud/sls-core)\n[![Build Status](https://dev.azure.com/serverless-inc/multicloud/_apis/build/status/CI/%5Bsls-core%5D%20ci?branchName=dev)](https://dev.azure.com/serverless-inc/multicloud/_build/latest?definitionId=3\u0026branchName=dev)\n\nThe Core package is required for all installations.  It contains all base implementations as well as the core framework runtime.\nSee [Core readme](./core/README.md) for additional information\n\n## Installation\nServerless @multicloud library for Node can be installed via NPM\n\n```bash\n# Installs core components as as well as run-time dependencies for Azure \u0026 AWS\nnpm install @multicloud/sls-core @multicloud/sls-azure @multicloud/sls-aws --save\n```\n\n## Example\n```javascript\nconst { App } = require(\"@multicloud/sls-core\");\nconst { AzureModule } = require(\"@multicloud/sls-azure\");\nconst { AwsModule } = require(\"@multicloud/sls-aws\");\nconst app = new App(new AzureModule(), new AwsModule());\n\nmodule.exports.handler = app.use([], async (context) =\u003e {\n  const { req } = context;\n  const name = req.query.get(\"name\");\n\n  if (name) {\n    context.send(`Hello ${name}`, 200);\n  }\n  else {\n    context.send(\"Please pass a name on the query string or in the request body\", 400);\n  }\n});\n```\n\n## Contributing\n### [Code of Conduct](./CODE_OF_CONDUCT.md)\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, gender identity and expression, level of experience,\nnationality, personal appearance, race, religion, or sexual identity and\norientation.\n\n### [Contriubtion Guidelines](./CONTRIBUTING.md)\nWelcome, and thanks in advance for your help! Please follow these simple guidelines :+1:\n\n## Licensing\n\nServerless is licensed under the [MIT License](./LICENSE.txt).\n\nAll files located in the node_modules and external directories are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms in the MIT License.\n\n","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverless%2Fmulticloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fserverless%2Fmulticloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverless%2Fmulticloud/lists"}