StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Follow on

© 2025 StackShare. All rights reserved.

Product

  • Stacks
  • Tools
  • Feed

Company

  • About
  • Contact

Legal

  • Privacy Policy
  • Terms of Service
  1. Home
  2. Companies
  3. SMG Swiss Marketplace Group
SMG Swiss Marketplace Group

SMG Swiss Marketplace Group

Zürich, Switzerlandswissmarketplace.group

Real estate marketplace, part of SMG Swiss Marketplaces Group

83tools
1decisions
0followers
OverviewTech Stack83Dev Feed

Tech Stack

View all 83
Stack by Layer
AI10
Application & Data34
Utilities15
DevOps22
Business Tools2
AI
10 tools (12%)
Application & Data
34 tools (41%)
Utilities
15 tools (18%)
DevOps
22 tools (27%)
Business Tools
2 tools (2%)

AI

10
Amazon SageMakerscikit-learnPandasStreamlitAmazon BedrockLlamaIndexLangChainJupyterMLflowSpaCy

Application & Data

34
FirebaseKotlinorg.threeten:threetenbpAndroid RoomJacksoncom.github.bumptech.glide:glideAWS Amplifycom.jakewharton.timber:timberSquare.OkHttp3DockerFastAPIAWS FargateSnowflakepapermilldbtPostgreSQLMatillionPythonCloudFlareAmazon RDS for PostgreSQLServerlessSassAmazon CloudFrontVue.jsTypeScriptNode.jsAWS LambdaAmazon AuroraAmazon DynamoDBSwiftSwiftUICoreDataObjective-CRuby

Utilities

15
SlackPhraseRetrofitGoogle MapsGoogle Tag ManagerFirebase Cloud MessagingTableauAirflowAmazon Kinesis FirehoseGoogle OptimizePostmanSourcegraphTwilio SendGridElasticsearchGoogle Analytics

DevOps

22
JiraRobolectricGitLabAndroid StudiofastlaneCrashlyticsGitLab CIGradlemockkDatadogGitHubAWS Cloud Development KitDVCVisual Studio CodeWebStormTerraformSentryCypressJestWebpackYarnXcode

Business Tools

2
ConfluenceReact

Latest from Engineering

View all
Dmytro Yurchenko
Dmytro Yurchenko

Oct 16, 2021

DecidedonAWS Cloud Development KitAWS Cloud Development KitAWS CloudFormationAWS CloudFormationServerlessServerless

We chose AWS CDK over Serverless Framework as it provides stronger support for code re-use and modular software development, better IaC testing capabilities and tooling.

Comparison of CloudFormation (+ SAM) vs. Serverless Framework vs. AWS CDK:

CloudFormation, with SAM (Serverless Application Model) syntax

  • :plus: Extensive documentation
  • :plus: Not too verbose for common scenarios
  • :minus: For anything non-standard, we are forced to use the verbose CloudFormation syntax

Serverless Framework

  • :plus: Less verbose than CloudFormation for common scenarios
  • :plus: Plugins make certain operations much simpler (e.g. serverless-domain-manager + serverless-certificate-creator)
  • :minus: For anything non-standard, we are forced to use CloudFormation syntax
  • :minus: Creating variations of the same set of resources with different parameters is not simple (as opposed to CDK constructs)
  • :minus: More generally, there is no support for code re-use (beyond including YAML chunks)
  • :minus: As it uses specific DSL that is being translated into CloudFormation (CF) DSL one has to reason in two modes when looking at the resulting CF stacks, interpretation of default values for some configuration properties (e.g. logging for API Gateway, etc.) can be surprising
  • :minus: There’s no way to preview the generated CF template for validation purposes
  • :plus: :minus: Controls Lambda code bundling with a purpose of making it user-friendly, but inevitably introduces constraints, which show up when you have many lambda functions

AWS CDK

  • :plus: Concise syntax
  • :plus: When constructs exist, really easy to use
  • :plus: The object model that is used in CDK is very close to CF DSL, the low-level Cfn-* are 1to1 wrappers of the CF ones
  • :plus: The use of Typescript (and other languages) enables type-checking, autocompletion and unit testing. Due to the fact that it is a plain-old Typescript code re-use (npm modules + packages) is possible and is highly encouraged (and can be done once for multiple platforms via aws/jsii )
  • :plus: There is substantial documentation now:
  • :plus: The existing set of constructs (see documentation mentioned above) plus our cdk-constructs library are sufficient to implement a system of virtually any complexity
  • :minus: Due to the fact that for CDK a programming language is supposed to be used, if a developer is inclined to use an imperative style of programming (rather than declarative or functional) the constructs are highly likely to be written in imperative style. With YAML imperative style is practically impossible. However, the constructs allow the interface to remain highly declarative thus hiding the imperative nature of implementation even in the worst case scenario.
  • :minus: There is no self-evident migration path from the stacks deployed using serverless to the stacks deployed using CDK. Thus making it practically impossible to migrate existing infrastructure to CDK.
4.7k views4.7k
Comments

Team on StackShare

5
Dmytro Yurchenko
Raphael Ackermann
spina-a-d
Peter Grube
Stefan Buretea