bcl

Basic Configuration Language (by wkhere)

Bcl Alternatives

Similar projects and alternatives to bcl

  1. just

    210 bcl VS just

    🤖 Just a command runner

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. cue

    125 bcl VS cue

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

  4. dhall-lang

    124 bcl VS dhall-lang

    Maintainable configuration files

  5. dagger

    116 bcl VS dagger

    An open-source runtime for composable workflows. Great for AI agents and CI/CD. (by dagger)

  6. json5

    104 bcl VS json5

    JSON5 — JSON for Humans

  7. WaveFunctionCollapse

    Bitmap & tilemap generation from a single example with the help of ideas from quantum mechanics

  8. toml

    50 bcl VS toml

    Tom's Obvious, Minimal Language

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. hcl

    50 bcl VS hcl

    HCL is the HashiCorp configuration language.

  11. Concourse

    Concourse is a container-based automation system written in Go.

  12. comment-castles

    41 bcl VS comment-castles

    Lightweight internet forum

  13. go-plugin

    31 bcl VS go-plugin

    Golang plugin system over RPC.

  14. cuetorials.com

    Learn you some CUE for a great good!

  15. moros

    23 bcl VS moros

    MOROS: Obscure Rust Operating System 🦉

  16. pkl

    15 bcl VS pkl

    A configuration as code language with rich validation and tooling.

  17. nature

    14 bcl VS nature

    The Nature Programming Language

  18. yj

    6 bcl VS yj

    CLI - Convert between YAML, TOML, JSON, and HCL. Preserves map order.

  19. pkl-go

    3 bcl VS pkl-go

    Pkl bindings for the Go programming language

  20. json2jsii

    1 bcl VS json2jsii

    Generates jsii-compatible structs from JSON schemas

  21. noyaml

    12 bcl VS noyaml

    A silly emotional rant about the state of devops tooling/the infrastructure sector in 2018. #noyaml.com

  22. daptin

    6 bcl VS daptin

    Daptin - Backend As A Service - GraphQL/JSON-API Headless CMS

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better bcl alternative or higher similarity.

bcl discussion

Log in or Post with

bcl reviews and mentions

Posts with mentions or reviews of bcl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-06-29.
  • Ask HN: What Are You Working On? (June 2025)
    156 projects | news.ycombinator.com | 29 Jun 2025
    Developing BCL, a configuration language not far from HCL. In some aspects simpler than the latter, more advanced in some other aspects (full expression evaluation, direct binding to Go structs).

    Recently reworked said deserialization to Go structs, allowing to handle more data layouts while simplifying the syntax. And having a great co-op with one of the two active users via Github issues.

    https://github.com/wkhere/bcl

  • Ask HN: What are you working on (September 2024)?
    116 projects | news.ycombinator.com | 29 Sep 2024
    Own streaming service for an internet radio, but that's not opensourced atm. It's Go and it seems to be amazing fit.

    That makes my other project a bit lacking attention, but I will get back to it - a configuration language BCL https://github.com/wkhere/bcl . Parser is based on a vm beauty from the 2nd part of Robert Nystrom's Crafting Interpreters book.

  • HCL: Toolkit for Structured Configuration Languages
    8 projects | news.ycombinator.com | 23 Apr 2024
    Another take on replacing HCL with something more sensible:

    BCL https://github.com/wkhere/bcl

  • Show HN: Togomak – declarative pipeline orchestrator based on HCL and Terraform
    12 projects | news.ycombinator.com | 24 Oct 2023
    I agree with you that HCL sucks when it comes to variables.

    Other thing that is funny: no user-defined functions, being unable to use function calls in string interpolations, but allowing variables... so it is like saying: we have this parser and at some points it allows expressions, at some other point not. This seems wrong.

    At the same time I agree or at least understand original author's intent to squeeze HCL to maxinum. There is something appealing in HCL visual form, at least when defining resources. Maybe it's just (almost) simplest form of defining such structures that can exists.

    This is why I started to work on my own format for configuration, visually similar but with different model of evaluation.

    Here is the first attempt: https://github.com/wkhere/bcl

    Disclaimer: I named it BCL, 'B' stands for Basic, to somehow relate to HCL and make it easily pronounced. But later I discovered that another BCL is used as Google to configure the Borg platform and seems to be massively hated ;) So I look for the better name..

  • Ask HN: Show me your half baked project
    163 projects | news.ycombinator.com | 12 Oct 2023
    I am crafting BCL, own configuration language.

    https://github.com/wkhere/bcl

    I started this when I was unable to squeeze certain usage patterns from HCL, like: variables living in the same scope as the file, evaluating variables in one pass with parsing, easily using external (environment) variables; plus, a simplified syntax.

    The implementation is mostly done: you can defined blocks holding key-value pairs and use numerical, string and bool expressions in them. I will add lists and nested blocks.

    At this very moment I am rewriting a parser from yacc-based to a Pratt top-down parser with vm, heavily inspired by the excellent book "Crafting Interpreters".

  • That's a Lot of YAML
    14 projects | news.ycombinator.com | 28 Sep 2023
    https://github.com/wkhere/bcl

    Will not immediately help for all of YAML usages, but at least for defining resources in a Terraform-like style. In fact, it's already it's already helpful as a replacement for HCL in one internal project, that was a final motivation to hack it.

    In a bigger picture, I have no idea how to help with YAML omnipresence in Kubernetes. More than a half of my problems in a $daily_job is how crude is consolidating a final Helm chart from different sources. I am not saying that Helm would be inherently a bad tool or my company has chosen pretty bad way of using it - I guess everyone is doing their best considering the ciscumstances. But manipulating textual templates is just too error prone, and the detection of errors happens too late. I dare to say - Kubernetes would do much better with custom format based on a C-like syntax, instead if trying to prove how cool YAML is, especially when it isn't.

  • BCL - a simplified HCL-like configuration format (WIP)
    1 project | /r/golang | 16 Sep 2023
  • What Is Wrong with TOML?
    15 projects | news.ycombinator.com | 13 Sep 2023
    Related:

    just few days ago I crafted together some ideas i had couple of years already for a configuration language, syntactically like HCL but without HashiCorps idiosyncrasies.

    Here it goes, BCL (_Basic_ Configuration Language, for a lack of better name yet), Go prototype, I can code Python port and possibly several other as well..

    https://github.com/wkhere/bcl

  • A note from our sponsor - Stream
    getstream.io | 7 Jul 2025
    Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure. Learn more →

Stats

Basic bcl repo stats
9
26
8.8
6 days ago

wkhere/bcl is an open source project licensed under GNU General Public License v3.0 or later which is an OSI approved license.

The primary programming language of bcl is Go.


Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Go is
the 4th most popular programming language
based on number of references?