hof VS cue

Compare hof vs cue and see what are their differences.

hof

Framework that joins data models, schemas, code generation, and a task engine. Language and technology agnostic. (by hofstadter-io)

cue

CUE has moved to https://github.com/cue-lang/cue (by cuelang)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
hof cue
33 28
475 3,181
2.7% -
8.9 9.1
5 months ago almost 3 years ago
Go Go
Apache License 2.0 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.

hof

Posts with mentions or reviews of hof. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-30.
  • Ask HN: Are SQL developers generally familiar with JSON, VSCode and Docker?
    1 project | news.ycombinator.com | 14 Mar 2024
    Many business analysts use SQL, have for a long time. They are probably not your target audience. With the problem being JAVA specific, you'd likely want to start there

    This sounds similar to the goals of my hof tool (https://github.com/hofstadter-io/hof), lift type definitions out of code so they can be defined in one place, then generate the code for all the places. Is that sounding like what you are after?

  • Show HN: Open SaaS – An open-source alternative to paid boilerplate starters
    6 projects | news.ycombinator.com | 30 Jan 2024
    Having built something similar, the biggest challenge for users is that they have to use a bespoke language, like WASP here. I suspect that it is also your biggest challenge as well.

    Mine is built on CUE, which at least has the potential to become a more widely used language. CUE hasn't reached sufficient maturity for broader adoption yet, so I continue to face this same problem.

    https://github.com/hofstadter-io/hof

  • OpenAI: Prompt Engineering
    5 projects | news.ycombinator.com | 15 Dec 2023
    Here's a big one I needed to get ChatGPT to do something more sophisticated with a JSON object response (predates functions and all that)

    https://github.com/hofstadter-io/hof/blob/_dev/flow/chat/pro...

    It no longer worked after a model update some time ago, haven't tried recently.

    I found codellama to be much better for this and require fewer instructions, an anecdotal validation for smaller, focussed models

  • Ask HN: What's the most compelling AI prompt result you've seen?
    1 project | news.ycombinator.com | 28 Nov 2023
    I was surprised out how you can define arbitrary grammars using arbitrary formulation and it would follow it. Of course you have to redo the prompt every time there is an update... such a pain

    https://github.com/hofstadter-io/hof/blob/_dev/flow/chat/pro...

  • HTTPie Desktop: cross-platform API testing client for humans
    18 projects | news.ycombinator.com | 8 Oct 2023
    CUE is indeed a beautiful language, will get those mind juices flowing for sure!

    There is more work to be done on the codec implementation, but if you just want to split yaml/json across files, CUE is a great option

    You might also like my project, built on CUE: https://github.com/hofstadter-io/hof We have a TUI where you can explore and work with CUE, JSON, Yaml

  • Show HN: A tool to Convert JSON schemas into TypeScript classes
    7 projects | news.ycombinator.com | 5 Oct 2023
    You can pretty much make up any pseudo grammar like this one, which is a reduced JSON object that is close to CUE: https://github.com/hofstadter-io/hof/blob/_dev/flow/chat/pro...

    No need to be formal or use a standard format

  • Guidance: A guidance language for controlling large language models
    10 projects | news.ycombinator.com | 16 Sep 2023
    Yea, in particular for this project, they have created a bespoke templating system.

    You can get the same thing with Go text/templates by adding chat function(s) as custom a helper: https://github.com/hofstadter-io/hof/blob/_dev/lib/templates...

  • Textual Web: TUIs for the Web
    9 projects | news.ycombinator.com | 7 Sep 2023
    100% one of the best things about building a TUI is not having the pain of modern web development. I do think there is a way to have a CLI & TUI come from the same code, so you can get the best of both, or pick the best for the task at hand.

    experiments in progress here: https://github.com/hofstadter-io/hof/tree/_dev/lib/tui

  • Jacobin: Minimal JVM written in Go and capable of running Java 17 classes
    15 projects | news.ycombinator.com | 24 Aug 2023
    CUE is another interesting language to use from within Go, and is rather natural, given CUE is implemented in Go, but you can also do way more cool things with CUE via the Go API.

    We're using CUE to validate and transform data, as input to code gen, the basis for a DAG task engine, and more

    https://cuelang.org | https://pkg.go.dev/cuelang.org/[email protected]/cue | https://cuetorials.com/go-api (learn about CUE)

    https://github.com/hofstadter-io/hof (where we are doing these things)

  • Introducing TypeChat from Microsoft
    18 projects | news.ycombinator.com | 20 Jul 2023
    here is one of our early examples: https://github.com/hofstadter-io/hof/blob/_dev/flow/chat/pro...

cue

Posts with mentions or reviews of cue. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-17.
  • The Perfect Configuration Format? Try TypeScript
    17 projects | news.ycombinator.com | 17 Nov 2021
  • YAML: It's Time to Move On
    29 projects | news.ycombinator.com | 14 Nov 2021
  • Ask HN: What you up to? (Who doesn't want to be hired?)
    25 projects | news.ycombinator.com | 1 Nov 2021
    I'm continuing to work on https://concise-encoding.org which is a new security-conscious ad-hoc encoding format to replace JSON/XML and friends. I've been at it for 3 years so far and am close to a release.

    In a nutshell:

    - Edit in text, transmit in binary. One can be seamlessly converted to the other, but binary is far more efficient for processing, storage and transmission, while text is better for humans to read and edit (which happens far less often than the other things).

    - Secure by design: Everything is tightly specced and accounted for so that there aren't differences between implementations that can be exploited to compromise your system. https://github.com/kstenerud/concise-encoding/blob/master/ce...

    - Real type support because coercing everything into strings sucks (and is another security risk and source of incompatibilities).

    XML had a good run but was replaced by JSON which was a big improvement. JSON also had a good run but it's time for it to retire now that the landscape has changed even further: Security and efficiency are the desires of today, and JSON provides neither.

    I've got the spec nailed down and can finally see the light at the end of the tunnel for the reference implementation in golang. I still need to come up with a system for schemas, but I'm hoping that https://cuelang.org will fit the bill.

  • No YAML
    6 projects | news.ycombinator.com | 27 Oct 2021
    Has anyone taken a look at Cue who can share any experiences?

    https://cuelang.org/

    It's mentioned on the site as an alternative to Yaml. Recently watched (~half of) this intro to it: https://youtu.be/fR_yApIf6jU

  • Ask HN: Is there a good way to run integration tests on Kubernetes?
    1 project | news.ycombinator.com | 25 Oct 2021
  • Cue: A new language for data validation
    1 project | /r/patient_hackernews | 19 Oct 2021
    1 project | /r/hackernews | 19 Oct 2021
    17 projects | news.ycombinator.com | 19 Oct 2021
    the most interesting summary explanation of cue lang and its differences is from a bug filing - https://github.com/cuelang/cue/issues/33

    >CUE is a bit different from the languages used in linguistics and more tailored to the general configuration issue as we've seen it at Google. But under the hood it adheres strictly to the concepts and principles of these approaches and we have been careful not to make the same mistakes made in BCL (which then were copied in all its offshoots). It also means that CUE can benefit from 30 years of research on this topic. For instance, under the hood, CUE uses a first-order unification algorithm, allowing us to build template extractors based on anti-unification (see issue #7 and #15), something that is not very meaningful or even possible with languages like BCL and Jsonnet.

  • CMake proposal: Unified way of describing dependencies of a project
    2 projects | /r/cpp | 5 Oct 2021
    I agree with you. Personally, I think Cue is much better than either YAML, TOML or JSON because it adds the concept of types to the idea of describing configuration.
  • Cloud Infrastructure as SQL
    9 projects | news.ycombinator.com | 16 Sep 2021
    true, but the tooling and workflow remains the same.

    Not sure of any tool that could abstract the details sufficiently to be widely adopted. There is just too much nuance in cloud config.

    I'm exploring using CUE (https://cuelang.org) to define TF resources, exporting as JSON for TF. So far it's much nicer

What are some alternatives?

When comparing hof and cue you can also consider the following projects:

cue - The home of the CUE language! Validate and define text-based and dynamic configuration

terraform - Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.

smug - Session manager and task runner for tmux. Start your development environment within one command.

dhall-lang - Maintainable configuration files

ping-heatmap - A tool for displaying subsecond offset heatmaps of ICMP ping latency

jsonnet - Jsonnet - The data templating language

go-live - 🗂️ go-live is an ultra-light server utility that serves files, HTML or anything else, over HTTP.

Pulumi - Pulumi - Infrastructure as Code in any programming language. Build infrastructure intuitively on any cloud using familiar languages 🚀

jk - Configuration as Code with ECMAScript

ytt - YAML templating tool that works on YAML structure instead of text

bashly - Bash command line framework and CLI generator

starlark-rust - A Rust implementation of the Starlark language