No. Pulumi can do it but they have a compiler in the background. And you still need a lot of boilerplate devops stuff around it.
So if you already need a compiler to do the packaging, etc. why stop there. A lot of other tooling problems go away.
But yes, you'll be reinventing the wheel to some portion.
I'm not sure if you're making some distinction I'm not following, but yes? One of them is called 'AWS SDK for JavaScript'?
Let's say you are writing JS and you have
`const handler = ...`
You can not do something like
`const lambda = deployLambda(handler)`
on the next line.
Instead you need a deployment package. And to build this, you need to leave JS and involve some CI code and some IaC tool.
But wing enables you to just do that. (seemingly, I've not tried it yet)
No. Pulumi can do it but they have a compiler in the background. And you still need a lot of boilerplate devops stuff around it.
So if you already need a compiler to do the packaging, etc. why stop there. A lot of other tooling problems go away.
But yes, you'll be reinventing the wheel to some portion.