mix_install_examples VS fetch

Compare mix_install_examples vs fetch and see what are their differences.

mix_install_examples

A collection of simple Elixir scripts that are using Mix.install/2. (by wojtekmach)
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
mix_install_examples fetch
10 35
505 2,078
- 0.5%
5.0 5.9
5 days ago 7 days ago
Elixir HTML
- GNU General Public License v3.0 or later
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.

mix_install_examples

Posts with mentions or reviews of mix_install_examples. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-12.
  • On to Elixir
    1 project | news.ycombinator.com | 16 Aug 2023
    Ya, it's fair, it's a common complaint! Though the size of the generated files is nothing compared to Rails :D

    You're right that phx_new does count too. It's a bit misunderstood that Phoenix is actually closer to a micro-framework like Flask than it is a full-fledged solution like Django or Rails. What takes it up to their level is `mix phx.new`, so your argument is more on point than I initially thought. The LiveView issue tracker even provides a single-file version of a Phoenix app to re-create your issue in [0]. As you can see, it's not as simple as something like Flask, but not as complex as the generator does.

    Again, great article and happy to have you aboard ;)

    Also, if you want an auth solution without code generation, there is Pow [1]

    [0] https://github.com/wojtekmach/mix_install_examples/blob/main...

  • Scripting with Elixir
    7 projects | news.ycombinator.com | 12 Jun 2023
    - learning how to compute the checksum of the internal content of a zip file https://github.com/etalab/transport-site/blob/master/scripts...

    As mentioned in the article, I can definitely recommend to check out https://github.com/wojtekmach/mix_install_examples which has a long list of examples.

  • Server Sent Events
    3 projects | news.ycombinator.com | 15 May 2023
    Streaming ChatGPT via SSE in Elixir: https://github.com/wojtekmach/mix_install_examples/pull/22#i...
  • Single File Elixir Scripts
    6 projects | news.ycombinator.com | 8 Mar 2023
    love elixir. hate Mix.

    it's like using Maven or npm all over again. but even worse because it generates a lot of code.

    it creates disposable projects by design. No way to keep track of what to change when mix create outputs something different next year.

    and now things like https://github.com/wojtekmach/mix_install_examples/blob/main... where is ecto even installed? download from where? so annoying this trend.

  • Phoenix 1.7.0 Released: Built-In Tailwind, Verified Routes, LiveView Streams
    13 projects | news.ycombinator.com | 5 Mar 2023
  • Python 3.11 Delivers
    5 projects | news.ycombinator.com | 15 Dec 2022
  • Simple 1-2 page website with LiveView - alternative to Phoenix?
    1 project | /r/elixir | 14 Jun 2022
    Like others have told you, Phoenix doesn't really add much complexity / fat / weight. In terms of complexity, if you don't want to use phx_new to boostrap the project here's a sample of using Phoenix LiveView in a single script file: https://github.com/wojtekmach/mix_install_examples/blob/main/phoenix_live_view.exs
  • Dynamic Queries in Ecto (Elixir Lang)
    3 projects | news.ycombinator.com | 15 Sep 2021
    If you want to play around with Ecto in isolation, you can (thanks to `Mix.install/2`) work in single-files, all containing the migrations, the schemas and configuration.

    Check-out this repository for an example (and other single-file examples):

    https://github.com/wojtekmach/mix_install_examples/blob/main...

fetch

Posts with mentions or reviews of fetch. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-02.
  • JavaScript fetch does not support GET request with body
    1 project | news.ycombinator.com | 21 Nov 2023
  • GitHub Engineering: When MTLS Is Done Wrong
    3 projects | news.ycombinator.com | 2 Nov 2023
    mTLS has warts when used cross-origin. Fetch spec says that pre-flight requests mustn't include client certificates[1], so as a consequence servers behind mTLS authenticated proxy won't get a chance to reply to those pre-flight. Yet for non-preflighted requests it's fine to include client certificates..

    [1] https://fetch.spec.whatwg.org/#cors-protocol-and-credentials

  • Node.js fetch() vs. Deno fetch(): Implementation details...
    6 projects | /r/Deno | 2 Aug 2023
    I've been testing full duplex streaming from and to the browser using fetch() in a Native Messaging host. (No browser currently support full duplex streaming even though HTTP/2 does, see Fetch body streams are not full duplex #1254).
  • How do I detect requests initiated by the new fetch standard? How should I detect an AJAX request in general?
    2 projects | /r/codehunter | 2 Jul 2023
    Most js libraries use XMLHttpRequest and so provide HTTP_X_REQUESTED_WITH: XMLHttpRequest, but neither Chrome's implementation nor Github's polyfill of the new fetch uses a similar header. So how can one detect that the request is AJAX?
  • Server Sent Events
    3 projects | news.ycombinator.com | 15 May 2023
    Any resource of significance should be given a URI. https://www.w3.org/DesignIssues/Axioms.html#uri

    Or alternatively,

    > Cool URLs don't change (implicitly, cool things have URLs, see above). https://www.w3.org/Provider/Style/URI

    The advantage would be so high. It'd become a standard way to assert a resource, to make known a fact, that would be viable across systems. Instead of pushing to a chat app an anonymous chat message in a room, the server could assert a /room/42/msg/c0f3 resource, could identify universally what it is it's sending.

    We have come glancingly close to getting such a thing so many times. The HyBi mailing list that begat websockets had a number of alternate more resourceful ideas floating around such as a BEEP protocol that allowed patterns beyond request/response of resources. The browser actually implements an internal protocol that uses HTTP2/push to send resourceful messages... Even though http2/push was de-implemented for webserving in general, and even though ability to hear push events was never implemented (oft requested).

    The best we have today is to stream json-ls events, which have an @id property identifying them. But developers would have to snoop these events, and store them in a service worker, to make them actually accessible as http resources.

    I continue to hold hope eventually we'll get better at using urls to send data, to assert new things happening... But it's been nearly 30 years of me hoping, and with some fleeting exceptions the browser teams have seemed disinterested in making urls cool, in spite of a number of requests. https://github.com/whatwg/fetch/issues/65 was an old request. https://github.com/whatwg/fetch/issues/607 had some steam in making it happen.

  • [Express] - How to have a self-updating display in browser window? Template Engines sufficient? Or use Vue/Angular/React?]
    2 projects | /r/learnjavascript | 14 May 2023
    Fetch
  • Adding timeout and multiple abort signals to fetch() (TypeScript/React)
    4 projects | dev.to | 29 Apr 2023
    Proposal: fetch with multiple AbortSignals - I got the idea of merging multiple signals from here.
  • My experience being blocked by Google Safe Browsing
    1 project | news.ycombinator.com | 2 Apr 2023
    Port 10080 is blocked on most browsers[0] per the WhatWG "bad ports" list[1]. That particular port was added to the list due to the Slipstream attack[2] that made the news a few years ago[3].

    You don't have to switch to a browser that ignores standard security mitigations. Just pick a different port for your service.

    [0] I just tested Chrome, Firefox, and Safari.

    [1] https://fetch.spec.whatwg.org/#bad-port

    [2] https://samy.pl/slipstream/

    [3] https://news.ycombinator.com/item?id=24955891

  • Substack is now powered by Ghost
    3 projects | news.ycombinator.com | 12 Dec 2022
    Note that caching resources across sites isn't really a thing anymore. See https://github.com/whatwg/fetch/issues/904
  • Help with HTTP requests
    1 project | /r/learnjavascript | 5 Nov 2022

What are some alternatives?

When comparing mix_install_examples and fetch you can also consider the following projects:

moebius - Modern ANSI & ASCII Art Editor

cors-anywhere - CORS Anywhere is a NodeJS reverse proxy which adds CORS headers to the proxied request.

ecto - A toolkit for data mapping and language integrated query.

undici - An HTTP/1.1 client, written from scratch for Node.js

unsplit - Resolves conflicts in Mnesia after network splits

deno - A modern runtime for JavaScript and TypeScript.

moebius - A functional query tool for Elixir

http-proxy - A full-featured http proxy for node.js

gleam - ⭐️ A friendly language for building type-safe, scalable systems!

cors-playground

single_file_phx_bumblebee_ml

university-domains-list - University Domains and Names Data List & API