neil VS imba

Compare neil vs imba and see what are their differences.

neil

A CLI to add common aliases and features to deps.edn-based projects (by babashka)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
neil imba
10 45
349 6,234
1.7% 0.2%
7.3 9.4
about 1 month ago 3 days ago
Clojure JavaScript
MIT License MIT License
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.

neil

Posts with mentions or reviews of neil. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-28.
  • Adding Dependencies on Clojure Project the Node Way: A Small Intro to neil CLI
    3 projects | dev.to | 28 Nov 2023
    So neil has a bunch of other features like project scaffolding, building, testing, adding license, etc. I really recommend you take a deep look at the repository and learn all the automatized possibilities that neil adds to your project.
  • Leaving Clojure - Feedback for those that care
    8 projects | /r/Clojure | 23 Jun 2023
    Check out neil. It makes creating new deps.edn-based projects easy. It also has commands to add deps incrementally to your deps.edn with neil dep add and helps you tag new releases with neil version. You can run it in a REPL if you want, but as you can see below, it runs pretty fast in the shell. $ brew install babashka/brew/neil $ time neil new scratch play Creating project from org.corfield.new/scratch in play neil new scratch play 0.09s user 0.06s system 54% cpu 0.280 total
  • Clojure is a product design tool
    8 projects | news.ycombinator.com | 22 Jun 2023
    Full-featured test runner: https://github.com/lambdaisland/kaocha

    If you install neil (https://github.com/babashka/neil), you can do `neil add test` which will automatically set up cognitect-labs/test-runner in your project. Then you can run tests with `neil test` (just an alias, you don't have to use it).

    > I used Kit to bootstrap this project and the way it set up tests doesn't even work, but this was what most people recommended to me for starting a Clojure project

    I don't really like the approach that Kit takes and prefer something more opinionated like Biff. I'd love to hear your feedback if you do end up trying out Biff.

  • I'm a masochist who want to compile a uberjar without Leiningen
    2 projects | /r/Clojure | 17 Oct 2022
    For some common tasks, neil is also an option.
  • Clojure Community State
    2 projects | /r/Clojure | 6 Aug 2022
  • Logging in Clojure: jar tidiness
    4 projects | dev.to | 5 Aug 2022
    Let's setup a basic project that includes a logger. I think the nicest way to get a new project up is with one of the tools that Borkdude has created, called neil. If you have this installed, just run the following in an empty directory:
  • Clojure needs a Rails, but not for the reason you think
    2 projects | /r/Clojure | 1 Aug 2022
    When I see legit anger and frustration in these comments, I also think about the newcomers who might be turned off by the funky syntax just to generate a template. That said, my solution to this wasn't to add another complaint to the thread, but to add the neil new command to solve this problem for tools.deps going forward.
  • Anyone using the Kit framework?
    6 projects | /r/Clojure | 17 Jul 2022
    There is also neil which offers some features to make working with deps.edn a little easier.

imba

Posts with mentions or reviews of imba. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-02.
  • Ask HN: What are some unpopular technologies you wish people knew more about?
    56 projects | news.ycombinator.com | 2 Dec 2023
    Imba. The best web programming language ever made.

    https://imba.io/

  • Portugal. The Man – Official Website Is a Google Sheets Document
    7 projects | news.ycombinator.com | 3 Nov 2023
    I agree. I was looking for the same thing.

    They’re not easy to create but side by side code/result demos like the ones I saw on https://imba.io/ make it very clear on what I’ll be getting into as a developer.

  • Imba – The friendly full-stack language
    1 project | /r/patient_hackernews | 25 Sep 2023
    6 projects | news.ycombinator.com | 23 Sep 2023
  • Clojure is a product design tool
    8 projects | news.ycombinator.com | 22 Jun 2023
  • Fore – Declarative user interfaces in plain HTML
    2 projects | news.ycombinator.com | 4 Jun 2023
  • Framework for a frontend-only project?
    5 projects | /r/Frontend | 15 Apr 2023
    You might get away with Svelte (not Sveltekit) here since it compiles down to javascript. Another fun framework to try out for this might be https://imba.io/, which also has an option to compile things down to pure HTML, CSS & JS (plus it’s very fun to work with).
  • Thoughts on Svelte
    15 projects | news.ycombinator.com | 27 Mar 2023
    I've been using Svelte exclusively for the past 3 years or so. I love it and will keep using it as my main solution for interactivity. It's fast to use and execute, produces small apps, and it's extremely economical in how you express components.

    The confusion the author expresses with $: reactive statements and store auto subscription with the $ are unwarranted IMO. It's really just a lack of familiarity but this kind of stuff becomes intuitive very quickly.

    My criticism of Svelte is rather that they haven't gone deep enough into the compiler-based approach.

    Would be great if there were something like .svelteStore files where you had all the automatic reactivity tracking without having to use a component. Or some kind of improvements into writing styles. With a compiler you can do anything you want and I think Svelte has been a bit timid, maybe to not scare people away.

    For example Imba[1] also bet on a compiler-based approach (years before Svelte existed) and created their own language/framework/compiler. They have come up with amazing solutions to many problems. It's a shame they bet on Ruby aesthetics though and also that they aren't investing into marketing/docs.

    Of course, one might argue that using a compiler is a bad idea for a number of reasons. And yeah of course there are objective issues to any approach, but you have to pick your poison. All in all, Svelte has made me tremendously productive compared to using other solutions for years (React, Vue, Mithril, Inferno, etc).

    I will say though that I would rather use a solution that doesn't have any reactivity at all. Mithril and Imba have this concept of just "redrawing the whole thing" like a game GUI without having to worry about reactivity. Cognitively speaking, no reactivity is the best mental model IMO. With any reactive solution, it's very easy to fall into complex reactive dependencies which can be hard to track. The author of Imba has a video from 2018 where he talks about this[2].

    [1] https://imba.io/

    [2] https://www.youtube.com/watch?v=jwoApTLvRdQ

  • The Io Language
    8 projects | news.ycombinator.com | 18 Mar 2023
    A code snippet showing a simple program right on the home page and "selling" whatever features makes it special would go a long way. It's quite off-putting to have to delve deep into a guide in order to get a feel for a language.

    Some examples done right:

    https://lfe.io

    https://elixir-lang.org

    https://imba.io

    https://ocaml.org

  • Why do so many CS grads seem to look down on webdev?
    2 projects | /r/webdev | 10 Jan 2023
    At the same time, my heart is kind of in the web stuff and I find it a lot more exciting personally so it's hard for me to leave. You can do so much more with web tech and all the new ideas Tcoming from it and the pace it's developing is really . I just don't understand why React is becoming the standard when it's a complete nightmare compared to where we should be. I mean, this is literally insane, especially when things like Svelte exist - or even better, Imba. The day Imba becomes the standard is the day I love web dev again.

What are some alternatives?

When comparing neil and imba you can also consider the following projects:

inf-clojure - Basic interaction with a Clojure subprocess

js-framework-benchmark - A comparison of the performance of a few popular javascript frameworks

deps-new - A new, simpler alternative to clj-new

React - The library for web and native user interfaces.

tools.logging - Clojure logging API

Tailwind CSS - A utility-first CSS framework for rapid UI development.

ez-database - Handle all things database in one place

svelte-preprocess - A ✨ magical ✨ Svelte preprocessor with sensible defaults and support for: PostCSS, SCSS, Less, Stylus, Coffeescript, TypeScript, Pug and much more.

jibbit - Dockerless Clojure Image builds using deps.edn

coffeescript - Unfancy JavaScript

bbin - Install any Babashka script or project with one command

htmx - </> htmx - high power tools for HTML