wende/elchemy
{ "createdAt": "2017-02-10T20:45:31Z", "defaultBranch": "master", "description": "Write Elixir code using statically-typed Elm-like syntax (compatible with Elm tooling)", "fullName": "wende/elchemy", "homepage": "https://wende.github.io/elchemy/", "language": "Elm", "name": "elchemy", "pushedAt": "2020-03-17T13:19:41Z", "stargazersCount": 1148, "topics": [ "compiler", "elchemy", "elixir", "elixir-lang", "elm", "language", "languages", "transpiler" ], "updatedAt": "2025-11-25T15:13:18Z", "url": "https://github.com/wende/elchemy"}
Quick install
Section titled “Quick install”npm install -g elchemyWhat is it?
Section titled “What is it?”Elchemy lets you write simple, fast and quality type safe code while leveraging both the Elm’s safety and Elixir’s ecosystem
In case of any questions about the project feel free to submit them in Issues with Q&A label
Section titled “In case of any questions about the project feel free to submit them in Issues with Q&A label”Features
Section titled “Features”- Type inference: Powerful type inference means you rarely have to annotate types. Everything gets checked for you by the compiler
- Easy and type-safe interop: You can call Elixir/Erlang without any extra boiler-plate. All the calls you make are checked in terms of type-safety as thoroughly as possible based on Elixir’s typespecs.
- All the best of Elm and Elixir: Elchemy inherits what’s best in Elm - type safety, inference and extreme expressiveness, but also what’s best in Elixir - Doc-tests, tooling and obviously the entire BEAM platform.
- Nearly no runtime errors - Elchemy’s type system eliminates almost all runtime errors. With a shrinking set of edge cases, your entire Elchemy codebase is safe. Elixir parts of the codebase are the only ones to be a suspect in cases of runtime errors happening.
- Beautiful and fully readable output - The produced code is idiomatic, performant and can be easily read and analyzed without taking a single look at the original source.
Maturity of the project
Section titled “Maturity of the project”- Parser - 99% of Elm’s syntax (see elm-ast)
- Compiler - 90% (Sophisticated incremental compilation. No support for Windows yet though (#287) and also big reliance on unix tools (#288)
- Elchemy-core - 95% ( Everything covered except side effects and JSON Decoders)
- Interop with Elixir - 90% - Purity tests (#162) and handling of macro-heavy libraries (#276) to go
- Ideology - 70% - We’ve got a pretty solid idea of where Elchemy is going
- Documentation - 80% - There are two tutorials and a complete Gitbook documentation. Few entrance level tutorials though, this project tries to change it.
- Elchemy-effects - 20% - You can’t and shouldn’t write anything with side-effects in Elchemy yet. We’re working on finding the best solution for effects that would fit both Elm’s and Elixir’s community (see #297 for more info)
- Elchemy-core for Erlang VM - 5% - Everything for os related tasks like filesystem, OTP goodies etc are yet to be done
- Elchemy type checker - 20% - Self-hosted elchemy type inference algorithm, written by @wende and inspired by @Bogdanp.
Prerequisites
Section titled “Prerequisites”- elixir@1.4.0-1.6.x
- node@5+
- elm-lang@0.18.0 (
npm install -g elm@0.18.0) - elm-github-install@0.1.2 - Compiler will install it automatically for you, if you don’t have it yet.
Installation in an existing Elixir project
Section titled “Installation in an existing Elixir project”Install elchemy globally with:
npm install -g elchemyThen, in the root directory of your project do:
elchemy initAnd follow the instructions.
elchemy will find all *.elm files specified in elchemy_path and compile it into corresponding *.ex files in lib directory.
You can override output directory specifying elixirc_paths.
Installation as a standalone
Section titled “Installation as a standalone”npm install -g elchemyUsage
elchemy compile source_dir output_dirRecommended editors setup
Section titled “Recommended editors setup”- Atom with elixir-language and atom-elixir or elixir-ide for Elixir; and language-elm + elmjutsu for Elchemy.
- Visual Studio Code with vscode-elixir, vscode-elixir-ls and vscode-elm
Build from source
Section titled “Build from source”git clone https://github.com/wende/elchemy.gitcd elchemymake compile./elchemy compile source_dir output_dirand
make devIn order to launch and test the web demo.
Troubleshooting
Section titled “Troubleshooting”If something doesn’t work, try
npm install -g elchemyelchemy cleanelchemy initmix testfirst
Why would I want to use that?
Section titled “Why would I want to use that?”- You like types
- But even more you prefer compile-time errors over run-time error
- You prefer
add b c = b + coverdefp add(a, b), do: b + c - You like curry
- You think failing fast is cool, but not as cool as not failing at all
Why wouldn’t I want to use that?
Section titled “Why wouldn’t I want to use that?”- Your project relies on die-hard battle tested libraries, and you despise any versions starting with 0
- You’re afraid that when you learn what Monad is your mustache will grow, and eyesight weaken
Can I use it in already existing Elixir project?
Section titled “Can I use it in already existing Elixir project?”You can, but nice and dandy compile tools are still on their way
Will my employer notice I’m having an affair with Elchemy?
Section titled “Will my employer notice I’m having an affair with Elchemy?”The output files of Elchemy treat the code readability as a first class citizen. The code is meant to be properly indented, the comments aren’t omitted, and the code is optimized as hard as it can ( f.i case clauses reduce to function overloads)
When will Elchemy become 1.0.0?
Section titled “When will Elchemy become 1.0.0?”Once it’s done, so as it is supposed to be in the so called semantic versioning. :innocent:
Can I contribute?
Section titled “Can I contribute?”Definitely. Yes. Please do. :two_hearts:
How are types represented?
Section titled “How are types represented?”You’re a nosy one, aren’t you? :smile: Elchemy represents all type constructors as snake cased atoms, and all type applications as tuples. Which means that MyType 42 "Forty two" Error in Elchemy equals to {:my_type, 42, "Forty Two", :error} in Elixir.
Can I use already existing Elm libraries with Elchemy?
Section titled “Can I use already existing Elm libraries with Elchemy?”As long as they don’t use any Native modules, Ports or Elm runtime they can be safely imported and used
Can I use already existing Elixir libraries with Elchemy?
Section titled “Can I use already existing Elixir libraries with Elchemy?”Yes. You can do an ffi call to any function in any module. Whether it’s Elixir module, Erlang module, or even a macro you can include it in your code. Ffi calls are a treated specially in Elchemy, and they get generated test to analyze the types based on @specs, so that you don’t compromise type safety for using Elixir code.
In order to increase readability it’s advised not to use ffi calls if not necessary and always document and doctest them.
But what about out of function macros? Like tests and use Module?
Section titled “But what about out of function macros? Like tests and use Module?”Unfortunately you can’t write any macros with do..end blocks yet. You can write any out of function code using an elixir inline code with:
{- ex *code_here*-}But it is a last resort solution and shouldn’t ever be abused.
Can I define an Elixir macro in Elchemy?
Section titled “Can I define an Elixir macro in Elchemy?”So you want to write an Elm-like code, that will manipulate Elixir code, which generates an Elixir code that manipulates Elixir code? How about no?
Do I need to have Elm installed to compile my .elm files with Elchemy?
Section titled “Do I need to have Elm installed to compile my .elm files with Elchemy?”Elchemy uses Elm to typecheck your program. It is possible to use it without Elm on your machine, while it’s not advised.
Contributor credits:
Section titled “Contributor credits:”- Tomasz Cichociński - @baransu
- Colin Bankier - @colinbankier
- Nathaniel Knight - @neganp
Inspiration:
Section titled “Inspiration:”Contributing Guide
Section titled “Contributing Guide”- Everyone is welcome to contribute :hugs:
- Refer to https://bogdanp.github.io/elm-ast/example/ to have better understanding of parsed tokens.
- Refer to https://wende.github.io/elchemy/stable/ to know the latest development version of the parser
- For project management we use ZenHub. You can see the Kanban board, card estimates and all the reports by installing a browser extension here: Opera/Chrome, [Firefox]!(zenhub.com)
Targeted values:
Section titled “Targeted values:”- Fully readable and indented elixir code generated from compilation
- Seamless and stress less interop with existing Elixir code, preferably with magically working type safety
- Full integration with entire elm syntax for editors and compilers magic