Skip to main content

Pulumi vs. Wing [Main differences]

Wing is a general purpose programming language, designed to develop entire cloud applications - including their infrastructure and application code. Pulumi is an infrastructure as code tool that focuses on the infrastructure part of the application. You then need a way to stitch together that infrastructure and the application code. The main differences between them are:

  1. Wing code is cloud-portable, so you can write the code once and then compile to any cloud. Pulumi is not cloud-portable. Although it supports all clouds, you need to write specific code for each one.
  2. Since the Wing compiler sees both the infra and application code, it can automatically generate much of the infrastructure definitions that you have to manually define in Pulumi (IAM policies, network topologies, etc).
  3. You will be able to compile Wing to Javascript and Pulumi in the future (roadmap is here). You will be able to use our compiler plugins to customize the Pulumi output directly.
  4. Wing provides local simulation and visualization tools that let you develop locally with instant hot reloading. With Pulumi, you must deploy to the cloud in order to interact with your application, which can take several minutes.

Code samples

To get a deeper understanding of the differences, let's see the same app built in both Wing and Pulumi. This simple cloud app uses a Function to upload a text file to a Bucket,

hello.w

main.ts

index.js

pulumi.yaml


The below table contains the main differences that you can see in the code examples, and also some that cannot fit in such a small app, but we still would like you to know about :)

FeatureWingPulumi
LanguageWingYAML + your choice
Line of code798
Cloud Mechanics (IAM, Networking)Generated automatically from intentManual
ExtensibilityCustom resourcesCustom/dynamic providers
Customizing lower levelsCompiler plugins to customize generated TerraformDirect access to cloud-provider APIs
Local simulationBuilt-in functional local simulator with instant hot reloadingNo
Cross-cloud supportSame code compiles to different cloudsNo (need to write different code for different clouds)
Provisioning engineSame code compiles to Terraform and AWS-CDK (CloudFormation)Proprietary
TestingSame tests run on local simulator and cloud, without mocksNeed mocks for local testing

You can get a sense of the development experience with Wing in our playground.