Lychee-front VS batch-cluster.js

Compare Lychee-front vs batch-cluster.js and see what are their differences.

Lychee-front

JS implementation of Lychee frontend (by LycheeOrg)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
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
Lychee-front batch-cluster.js
1 2
50 14
- -
10.0 7.7
4 months ago 7 days ago
JavaScript TypeScript
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.

Lychee-front

Posts with mentions or reviews of Lychee-front. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-01.
  • Lychee – Self-hosted photo-management done right
    16 projects | news.ycombinator.com | 1 Oct 2022
    Oh, if I had read further into the README I would have seen this:

    > https://github.com/LycheeOrg/Lychee#build

    > Lychee is ready to use, right out of the box. If you want to contribute and edit CSS or JS files, you need to rebuild https://github.com/LycheeOrg/Lychee-front.

    So their JavaScript source code is in a separate "Lychee-front" repository and they commit the build artifacts into the main "Lychee" repo. Not sure why they would do this.

batch-cluster.js

Posts with mentions or reviews of batch-cluster.js. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-01.
  • Lychee – Self-hosted photo-management done right
    16 projects | news.ycombinator.com | 1 Oct 2022
    The frontend is in Vue. Both the FE and BE are in TypeScript.

    Parallelism is provided by https://github.com/photostructure/batch-cluster.js/

    Metadata reads and writes are via https://github.com/photostructure/exiftool-vendored.js/

    My more nerdier blog posts are tagged here: https://photostructure.com/tags/coding/

  • Ask HN: What are some tools / libraries you built yourself?
    264 projects | news.ycombinator.com | 16 May 2021
    I needed a good Node wrapper for ExifTool and wrote https://github.com/photostructure/exiftool-vendored.js

    When I saw how slow it is to fork child processes in Windows, I then realized I wanted to run ExifTool in "stay-open" mode, which meant I needed to manage 1 or more long-lived child processes that communicate via stdin/stdout, so I wrote https://github.com/photostructure/batch-cluster.js

    I also really missed scala's `lazy` operator, so I built that (and several other small, helpful functions/classes) that I documented here: https://photostructure.com/coding/uncertain-lazy-forgetful-a...