dhall-aws-cloudformation VS skycfg

Compare dhall-aws-cloudformation vs skycfg and see what are their differences.

dhall-aws-cloudformation

Typecheck, template and modularize your AWS CloudFormation with Dhall (by jcouyang)

skycfg

Skycfg is an extension library for the Starlark language that adds support for constructing Protocol Buffer messages. (by stripe)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
dhall-aws-cloudformation skycfg
2 6
28 634
- 0.5%
6.6 3.9
about 2 months ago about 1 month ago
Haskell Go
BSD 3-clause "New" or "Revised" License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

dhall-aws-cloudformation

Posts with mentions or reviews of dhall-aws-cloudformation. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-14.
  • The Dhall Configuration Language
    21 projects | news.ycombinator.com | 14 Jul 2022
    I have been writing a fair amount of Dhall using autogenerated CloudFormation bindings ( https://github.com/jcouyang/dhall-aws-cloudformation/ ). It is a fantastic way to reduce boilerplate and factor out recurring blobs. My main frustration is that the type checker is not smart enough (or maybe the type system is undecidable?) - every time you want to use a polymorphic function, you must pass in the type parameters yourself (this is also true for empty lists and `None`). This makes simple FP idioms extremely noisy, to the point where you're better off writing longhand. In a language that's meant to be alleviating YAML/JSON boilerplate.

    It's still a massive improvement, but it could be so much better if the typechecker was smarter.

  • Typecheck and Modularize AWS CloudFormation with Dhall
    1 project | news.ycombinator.com | 30 Mar 2021

skycfg

Posts with mentions or reviews of skycfg. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-27.
  • Jsonnet – The Data Templating Language
    20 projects | news.ycombinator.com | 27 Mar 2023
    I can definitely sympathize here - in every context, just straight JSON/YAML configuration seems never expressive enough, but the tooling created in response always seems to come with sharp edges.

    Here are some of the things I appreciate about Jsonnet:

    - It evals to JSON, so even though the semantics of the language are confusing, it is reasonably easy to eval and iterate on some Jsonnet until it emits what one is expecting - and after that, it's easy to create some validation tests so that regressions don't occur.

    - It takes advantage of the fact that JSON is a lowest-common-denominator for many data serialization formats. YAML is technically a superset of JSON, so valid JSON is also valid YAML. Proto3 messages have a canonical JSON representation, so JSON can also adhere to protobuf schemas. This covers most "serialized data structure" use-cases I typically encounter (TOML and HCL are outliers, but many tools that accept those also accept equivalent JSON). This means that with a little bit of build-tool duct-taping, Jsonnet can be used to generate configurations for a wide variety of tooling.

    - Jsonnet is itself a superset of JSON - so those more willing to write verbose JSON than learn Jsonnet can still write JSON that someone else can import/use elsewhere. Using Jsonnet does not preclude falling back to JSON.

    - The tooling works well - installing the Jsonnet VSCode plugin brings in a code formatter that does an excellent job, and rules_jsonnet[0] provides good bazel integration, if that's your thing.

    I'm excited about Jsonnet because now as long as other tool authors decide to consume JSON, I can more easily abstract away their verbosity without writing a purpose-built tool (looking at you, Kubernetes) without resorting to text templating (ahem Helm). Jsonnet might just be my "one JSON-generation language to rule them all"!

    ---

    Though if Starlark is your thing, do checkout out skycfg[1]

    [0] - https://github.com/bazelbuild/rules_jsonnet

    [1] - https://github.com/stripe/skycfg

  • The Dhall Configuration Language
    21 projects | news.ycombinator.com | 14 Jul 2022
    Can you say more about what GCL does better than all of the open source ones?

    Anecdotally, I've heard a lot of GCL horror stories, and many Xooglers have chosen to create things like Jsonnet or Skycfg (https://github.com/stripe/skycfg) instead.

  • YAML: It's Time to Move On
    29 projects | news.ycombinator.com | 14 Nov 2021
  • Opinion-driven design
    3 projects | /r/programming | 23 Jun 2021
  • Migrating Millions of Concurrent WebSockets to Envoy
    2 projects | news.ycombinator.com | 17 Mar 2021
    If you’re looking at other solutions check out https://github.com/stripe/skycfg It works with Envoy and lots of other things that support protobuf configs
  • Yaml Is The Worst Thing Ever Created K8s Should
    1 project | /r/kubernetes | 28 Feb 2021
    This is good and there are several other options like https://github.com/stripe/skycfg#why-use-skycfg to add full language support (using Go or python for ex) to configurations.

What are some alternatives?

When comparing dhall-aws-cloudformation and skycfg you can also consider the following projects:

dhall-nix

jsonnet - Jsonnet - The data templating language

cachix - Command line client for Nix binary cache hosting:

isopod - An expressive DSL and framework for Kubernetes configuration without YAML

jrsonnet - Rust implementation of Jsonnet language

nestedtext - Human readable and writable data interchange format

go-jsonnet

ron - Rusty Object Notation

shake-dhall - Facilities for using Shake + dhall

rules_jsonnet - Jsonnet rules for Bazel

dhall-manual - The Dhall Configuration Language Manual

starlark - Starlark Language