babashka VS ndjson.github.io

Compare babashka vs ndjson.github.io and see what are their differences.

babashka

A Clojure babushka for the grey areas of Bash (native fast-starting Clojure scripting environment) [Moved to: https://github.com/babashka/babashka] (by borkdude)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
babashka ndjson.github.io
2 17
1,711 23
- -
9.7 0.0
over 3 years ago 9 months ago
Clojure CSS
Eclipse Public License 1.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.

babashka

Posts with mentions or reviews of babashka. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-09.
  • Show HN: Bbb – an easy way to build and compile Clojure CLIs with GraalVM
    3 projects | news.ycombinator.com | 9 Feb 2022
    I've been learning Clojure recently and loving it, but one thing I've found myself missing from my Golang days is how easy it is to build and deploy CLI tools in Golang.

    With GraalVM it's finally possible to compile Clojure apps into static binaries that give your users a deploy and startup experience similar to Go's, but I found GraalVM very difficult to configure and use, and was often frustrated because not all JVM code is compatible with GraalVM. Worse still, because native-images take a while to build you often don't find out that your working JVM Clojure code won't work as a native-image until it's too late.

    BabashkaBins/bbb is my attempt to fix this: it lets you easily run the same codebase under babashka or JVM Clojure, and will automate compiling your project to a static binary for you using GraalVM's native-image. It also takes care of collecting some tweaks that make it easy to use the cli-magic [2] library under babashka, which means you can easily make complex CLI tools with nested subcommands a la git or docker, with all the bells and whistles.

    Since babashka is itself compiled under GraalVM, this arrangement provides a other few nice benefits: 1) babashka starts quickly, so you can test your CLI from an actual command line without waiting for the JVM to spin up each time. 2) babashka's codebase contains a treasure trove of GraalVM related tweaks and fixes that using bbb lets you take advantage of in your own CLIs for free, and 3) it functions as a quick sanity check since babashka itself is compiled under GraalVM. If you find yourself doing something that's not GraalVM compatible at least you'll know early!

    [1]: https://github.com/borkdude/babashka

  • A Practical Introduction to jq (and more)
    10 projects | news.ycombinator.com | 21 Dec 2020
    ```

    [1]: https://github.com/borkdude/babashka

ndjson.github.io

Posts with mentions or reviews of ndjson.github.io. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-11.
  • What the fuck
    2 projects | /r/programminghorror | 11 Apr 2023
    However, since every JSON document can be represented in a single line, something like newline-delimited JSON / JSON Lines feels like it would've been more suitable for that kind of data.
  • The XML spec is 25 years old today
    1 project | news.ycombinator.com | 10 Feb 2023
  • Consider Using CSV
    7 projects | news.ycombinator.com | 10 Dec 2022
    No one uses that format for streamed json, see ndson and jsonl

    http://ndjson.org/

    The size complaint is overblown, as repeated fields are compressed away.

    As other folks rightfully commented, csv is a mine field. One should assume every CSV file is broken in some way. They also don't enumerate any of the downsides of CSV.

    What people should consider is using formats like Avro or Parquet that carry their schema with them so the data can be loaded and analyzed without have to manually deal with column meaning.

  • DevTool Intro: The Algolia CLI!
    2 projects | dev.to | 15 Aug 2022
    What is ndjson? Newline delimited JSON is the format the Algolia CLI reads from and writes to files. This means that any command that passes ndjson formatted data as output or accepts it as input can be piped together with an Algolia CLI command! We’ll see more of this in the next example
  • On read of JSON file it loads the entire JSON into memory.
    1 project | /r/learnpython | 19 Jul 2022
    You might consider using json-lines format (also known as newline-delimited JSON), in which each line is a separate JSON document so they can be loaded individually.
  • How to format it as json?
    1 project | /r/golang | 27 Jun 2022
    The format you're getting is known as Newline-Delimited JSON. Instead of trying to parse the whole input and pass that to the JSON Decoder, you can use something like bufio.Scanner to get and parse it line by line.
  • Arrow2 0.12.0 released - including almost complete support for Parquet
    2 projects | /r/rust | 5 Jun 2022
    This is in oposition to NDJSON, which allows to split records without deserializing JSON itself, via e.g. read_lines. fwiw CSV suffers from the same problem as JSON - generally not possible to break into records without deserializing. It is worse than NDJSON because the character \n may appear at any position within an item, thus forbidding read_lines.
  • Processing large JSON files in Python without running out of memory
    1 project | /r/Python | 18 Mar 2022
    I've always seen it referred to as ndjson
  • Speeding up Go's builtin JSON encoder up to 55% for large arrays of objects
    2 projects | news.ycombinator.com | 3 Mar 2022
    I think this would be fine, as long as the CSV layer was still parsable using the RFC 4180, then you could still use a normal CSV parser to parse the CSV layer and a normal JSON parser to parse the JSON layer. My worry with your example is that it is nether format, so it will need custom serialisation and deserialisation logic as it is essentially a bran new format.

    https://datatracker.ietf.org/doc/html/rfc4180

    If you’re looking for line-oriented JSON, another option would be ndjson: http://ndjson.org/

  • IETF should keep XMPP as IM standard, instead of Matrix
    7 projects | news.ycombinator.com | 16 Jan 2022

What are some alternatives?

When comparing babashka and ndjson.github.io you can also consider the following projects:

PowerShell - PowerShell for every system!

ndjson - Streaming line delimited json parser + serializer

cheshire - Clojure JSON and JSON SMILE (binary json format) encoding/decoding

flatten-tool - Tools for generating CSV and other flat versions of the structured data

jc - CLI tool and python library that converts the output of popular command-line tools, file-types, and common strings to JSON, YAML, or Dictionaries. This allows piping of output to tools like jq and simplifying automation scripts.

miller - Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON

specter-cli - A native Specter CLI, compiled with GraalVM native-image and executed by SCI.

datasette - An open source multi-tool for exploring and publishing data

clojure-lsp - Clojure & ClojureScript Language Server (LSP) implementation

grop - helper script for the `gron | grep | gron -u` workflow

jq-web - jq in the browser with emscripten.

csv2sqlite