Ash Framework - a declarative, resource-oriented application development framework for Elixir

Ash Framework

What is Ash?

Ash Framework is a declarative, resource-oriented application development framework for Elixir. A resource can model anything, like a database table, an external API, or even custom code. Ash provides a rich, and extensive set of tools for interacting with and building on top of these resources. By modeling your application as a set of resources, other tools know exactly how to use them, allowing extensions like AshGraphql and AshJsonApi to provide top tier APIs with minimal configuration. With filtering/sorting/pagination/calculations/aggregations, pub/sub, policy authorization, rich introspection, and much more built-in, and a comprehensive suite of tools to allow you to build your own extensions, the possibilities are endless.

For those familiar with Phoenix, you can think of Ash as a declarative application modeling layer designed to replace your Phoenix contexts.

Ash Framework 2.0

Ash Framework 2.0 has been released! This begins the official stable release cycle (although it was already quite stable). Thanks to everyone in the community who helped make this possible, from the contributors, the curious, to those already using Ash in prod. Iā€™m eternally grateful for all of your support.

Additionally, Iā€™d like to thank Alembic, who have brought me on to work on Ash full time. Alembic is building complex software with small teams in record time by leveraging tools like Ash Framework and Phoenix LiveView.

Along with the 2.0 release of core, the AshPostgres, AshPhoenix and AshArchival packages have had 1.0 version released as well. AshGraphql is next up, and should be released in the next few weeks. Feel free to dive in to it before then, though :).

Is Ash an alternative to X?

Ash is not meant to be an alternative to Phoenix, Ecto, or Absinthe. Ash uses Ecto under the hood, AshGraphql uses Absinthe. Phoenix is absolutely the recommended way to build web interfaces on top of your Ash application (there is a whole package dedicated to it, AshPhoenix). Ash is not meant to be the only way that you ever interact with your data, so it is almost a certainty that you will need to use Ecto in some cases. For instance, Ash does not currently support bulk actions or atomic updates. For this reason, you can implement custom actions for things that can be encapsulated in your resource, and you have all of Elixir at your disposal to implement custom behavior outside of your resources, with a wide array of escape hatches in between.

Extensions

Extensions in 1.0+

  • AshPostgres - Back a resource with postgres. Rich querying capabilities, supporting aggregates, calculations, and fragments. Comes with a migration generator to get you up and running in record time!
  • AshPhoenix - Helpers to integrate Ash Resources with Phoenix. Tools like AshPhoenix.Form allow you to build forms over your resources, and manage complex nested related data with one data structure.
  • AshArchival - A tiny but powerful extension. Get archival (A.K.A soft deletion) with one line of code.

Extensions <1.0

  • AshGraphql - Create a GraphQL from your resources with only a few lines of code. Backed by the excellent Absinthe library. It comes with its own fully implemented dataloader, and automatically derives all the types, fields, and mutations automatically. Getting a relay compatible GraphQL API is as easy as setting the relay? toggle.
  • AshJsonApi - Create a JSON:API spec compliant API in minutes.
  • AshAdmin - A rich admin UI automatically derived from your resource definitions.
  • AshCsv - Back your resource with a CSV file.
  • Spark - The core declarative DSL library that backs Ash and its extensions.

Unreleased Extensions

  • AshPaperTrail - Creates and manages a versions table for a resource, and writes all changes to that version resource. With one line of code.
  • AshJsonApiWrapper - Back your resource with an external API using finch and configuration to describe how your resource maps to the response from the external service.

Your Own Extensions

All of the extensions above are created with a set of tools that are free to use to create your own extensions. They can all be used as a basis point, or as inspiration. Many users have created their own extensions for various reasons. An extension can both add to the resourceā€™s DSL and programatically restructure the resource. For example, AshArchival adds an attribute, modifies every destroy action, and adds a ā€œbase filterā€ to the resource. This allows for extremely powerful extensions.

Links

Expect to see a lot more content before long, like tutorial and short, topical videos.

Elixir Forum

Up until now, I havenā€™t posted much here, and have primarily engaged with the community via twitter and discord. However, if there are users here on the forums who are interested, Iā€™m more than happy to answer questions here. For now, Iā€™ll be subscribed to the ash tag, so if you use that, Iā€™ll be notified.

Where to start?

Ash is quite broad, and covers a considerable amount of ground. My suggestion is to follow the tutorials for a kicking off point. There are getting started guides for each individual package as well that, combined, will get you up and running from scratch.

:sunglasses: Happy hacking! :sunglasses:

74 Likes

Congratulations @zachdaniel. Lots of hard work paying off.

3 Likes

I have meant to check on Ash many times but this post finally made me take it seriously.

Really good description, and I am intrigued. Definitely will play with it in the next few months.

Thanks for the intro and announcement. Itā€™s well done.

2 Likes

Huge congratulations on the release! :clap:

Iā€™ve been using Ash on my hobby project(s) for a while now, and now that a stable release is out, Iā€™m definitely going to look into seeing how Ash could be applied in work context as well!

What I also really like about Ash is how powerful (yet straightforward to grasp) the concept of Resources is, and all the power that comes from deriving things out of those resources thanks to the consistent interface between them. The first time I set up ash_json_api for my project, I was just blown away by how much I got out of it ā€“ and how little boilerplate I had to write.

In general, the more Iā€™ve used Ash, the more Iā€™ve gotten out of it. Everything fits together really nicely, and Iā€™m yet to encounter a situation where I would need to fight the ā€œAsh wayā€ of doing things. At the same time, itā€™s also nice to know that I can do what I want if I choose to, and I can adopt Ash gradually instead of in an all-or-nothing way.

9 Likes

Looking forward to trying this. As a newcomer to Elixir /Phoenix Iā€™m struggling to reconcile great performance with really untidy Contexts with a while host of functions strewn everywhere.

Expecting a real world example tutorial from someone soon. (video or article or ebook).

5 Likes

Absolutely @anil28! There are a couple things on the roadmap that Iā€™d like to tackle before I do, but soon Iā€™ll be making a ā€œmake a twitter cloneā€ style video along the lines of what @chrismccord did for Phoenix.

21 Likes

Congrats on the release! Iā€™m constantly blown away with the quality of work and support the Ash community has put into this project. Itā€™s gotten to the point that I canā€™t imagine starting a new Elixir project that doesnā€™t use Ash, being able to prototype an idea with ETS and switch it over to Postgres with just a few lines of code is really a game changer for me.

6 Likes

It would be very interesting to have an extension to generate an OpenAPI spec, as well as one for API Blueprint. Has there been any talk of writing one?

OpenAPI generation is a nice ā€œgimmickā€ pythonā€™s fastapi has. While it hasnā€™t been very useful to me in hobby projects, it might help with larger and more complex projects. Also itā€™s nice ā€œeye candyā€ that should attract interest nevertheless.

2 Likes

Totally agree :slight_smile: AshGraphql already tackles that via exposing a GraphQL schema. However, AshJsonApi currently exposes a JSON ā€œhyper schemaā€, which could be quite easily translated to an open api spec :slight_smile: Just takes an enterprising soul!

4 Likes

I listened to the podcast this morning then followed the Getting Started tutorial.

Wow! Kudos @zachdaniel !!

My first impression: potentially a big improvement over Phoenix Contexts. For me the Ash conceptual model is very good - resources, data layers, actions, etc. Iā€™ll start testing on a small app this week.

Before I jump in with both feet, Iā€™m interested to understand the potential downsides. I wonder about the learning curve - Ash seems huge. I wonder about performance & maintainability. I wonder if there are ways to inject custom code when the limits of the framework are reached. I wonder about unseen barriers and glitches.

Experienced users: what are the potential gotchas, and what is the best fit for Ash??

3 Likes

Iā€™ll try to leave most of the talking to other Ash users who see your message :slight_smile: With that said, there are tons of escape hatches at various levels, from adding functional hooks to changes, to making actions manual and taking over their execution. One thing weā€™re actively working on(because it can be problematic) is making errors more understandable. More often than I would like, errors are lacking important context that would make debugging much easier. I donā€™t think this is a problem with the pattern, just something that requires some elbow grease on our end :slight_smile: See: add error context to error creation / normalisation by rellen Ā· Pull Request #440 Ā· ash-project/ash Ā· GitHub

In terms of performance, Ash generally leans into other tools to provide performance/stability guarantees, i.e AshPostgres ultimately runs your queries with Ecto. AshJsonApi is built with Plug, and AshGraphql uses Absinthe and Dataloader. Iā€™d be lying if I said there was no additional overhead on top of those tools when using Ash, but similar to the error situation above, that isnā€™t intrinsic to what weā€™re doing, just optimizations waiting to be made :slight_smile:

Check out AshHq if you havenā€™t already, its all implemented with Ash, from an extension that runs full text search with postgres, to the newly added (yesterday) AshBlog data layer that stores files in the priv directory. Lots of goodies in that codebase.

Site: https://ash-hq.org

Source: GitHub - ash-project/ash_hq: The Ash Framework homepage and documentation site.

6 Likes

Nice to see the Elixir landscape expanding with frameworks like Ash - and itā€™s great to see it can be used alongside Phoenix :smiley:

Great that youā€™re not averse to YouTubing, I was going to suggest making a tutorial video, glad youā€™re on it:

I find videos are really good for introducing people to tech like frameworks :023:

Also great to see Alembic taking you on to work on Ash! For those who are not aware Alembic have been using Elixir for quite some time and they are very active in the Elixir space in Australia - they help organise Elixir Camp and Elixir Girls :003:

Good luck with Ash, Zach - please keep us posted!

1 Like

What a terrific achievement man, this looks incredibly well made! Terrific work!

Therefore, not clear to me why should I choose Ash over Phoenix :thinking:
Otherwise, congrats for the achievement! The website looks promising.

Iā€™ve just spent most of the morning looking at Ash.

It looks amazingā€¦ and Iā€™m pretty interested in that auth resource you were mentioning on YouTube now =)

Therefore, not clear to me why should I choose Ash over Phoenix

Itā€™s not Ash or Phoenix, but rather Ash handles defining things like permissions/filters/datalayers around resources. Thereā€™s no concept of web-related things particularly, although there are exertions you can use to plug into things like Phoenix.

Phoenix does all the things Phoenix will still doā€¦ but then Ash comes along to give all these cool ways of defining flows, policies, attributes, etc. that you can call from anywhere - like a Phoenix controller or a Phoenix Liveview.

So it seems the ash framework provides a consistent way to define resources, change them, and read them at a separate layer from web.

It may replace/augment/overlap the idea of ā€˜contextsā€™ in Phoenixā€¦ but that would be it I think.

Iā€™ve wanted an opinionated way of doing those filters/policies/etc. for a while so I donā€™t make spaghetti inadvertently =)

Looks awesome.

6 Likes

I am currently watching Building Twitter with Ash + Creator of Ash Framework (Part 2) - YouTube und Ash reminds me of Hobo for Ruby/Rails - does anyone remember that? I think Ash could be the next game changer for Phoenix after LiveView and Surface.

Are there any tutorials available where you create a extremely minimal web application? I think I learn best when following somebody incremently implementing feature after feature. Edit: Found https://ash-hq.org/docs/guides/ash/latest/tutorials/get-started

3 Likes

The Ash interactive Livebook tutorial a fantastic example of what a great, hands-on tutorial experience can aspire to. I am very impressed on several levels!

2 Likes