Important
Next LS is merging with Elixir LS and Lexical! Read more about it at www.elixir-tools.dev.
The language server for Elixir that just works. 😎
Still in heavy development, but early adopters are encouraged!
Please see the docs to get started.
- Introducing Next LS and an elixir-tools update
- The elixir-tools Update Vol. 2
- The elixir-tools Update Vol. 3
- The elixir-tools Update Vol. 4
- The 2023 elixir-tools Update (Vol. 5)
- The elixir-tools Update Vol. 6
- The elixir-tools Update Vol. 7 & The Great Merge
Next LS and elixir-tools are sponsored by a ton of amazing people and companies. I urge you to sponsor if you'd like to see the projects reach their maximum potential 🚀.
https://github.com/sponsors/mhanberg
![User avatar: José Valim](https://github.com/josevalim.png)
![User avatar: Yolo Group](https://github.com/coingaming.png)
![User avatar: Christopher Grainger](https://github.com/cigrainger.png)
![User avatar: Mikkel Høgh](https://github.com/mikl.png)
![User avatar: Sebastian Henao](https://github.com/shenaor.png)
![User avatar: Alexander Koutmos](https://github.com/akoutmos.png)
![User avatar: Simon Wolf](https://github.com/simon-wolf.png)
![User avatar: Parker Selbert](https://github.com/sorentwo.png)
![User avatar:](https://github.com/chriscrabtree.png)
![User avatar: Noah Betzen](https://github.com/Nezteb.png)
![User avatar: Shannon Selbert](https://github.com/sorenone.png)
![User avatar: Dorian Karter](https://github.com/dkarter.png)
![User avatar: André Luiz da Fonsêca Paes](https://github.com/andrepaes.png)
![User avatar: jackson millsaps](https://github.com/dyackson.png)
![User avatar: Brett Wise](https://github.com/brettwise.png)
![User avatar: David Bernheisel](https://github.com/dbernheisel.png)
![User avatar: Qdentity](https://github.com/qdentity.png)
![User avatar: NFIBrokerage](https://github.com/NFIBrokerage.png)
![User avatar: Rudolf Manusadzhian](https://github.com/RudolfMan.png)
![User avatar: Clark Lindsay](https://github.com/clark-lindsay.png)
![User avatar: Stephen Bussey](https://github.com/sb8244.png)
![User avatar: Supered](https://github.com/getsupered.png)
![User avatar: Keith Gautreaux](https://github.com/kgautreaux.png)
![User avatar:](https://github.com/szTheory.png)
![User avatar: Jean-Luc Geering](https://github.com/jlgeering.png)
![User avatar: Jamie Wright](https://github.com/jwright.png)
![User avatar: Zach Norris](https://github.com/znorris.png)
![User avatar: Joe Martinez](https://github.com/capitalist.png)
![User avatar: Marcos](https://github.com/ideaMarcos.png)
![User avatar: Dan Dresselhaus](https://github.com/ddresselhaus.png)
![User avatar: Marcel Fahle](https://github.com/marcelfahle.png)
![User avatar: Amplified](https://github.com/amplifiedai.png)
![User avatar: Dave Lucia](https://github.com/davydog187.png)
![User avatar: Pametno Računovodstvo - SmartAccount](https://github.com/sa-hr.png)
![User avatar: Marcelo Dominguez](https://github.com/marpo60.png)
![User avatar:](https://github.com/jyc.png)
![User avatar: Aaron Gunderson](https://github.com/agundy.png)
![User avatar: Dicky Kuang](https://github.com/dickykuang.png)
![User avatar: Leandro Pereira](https://github.com/leandrocp.png)
![User avatar: Jake Demarest-Mays](https://github.com/bravely.png)
![User avatar: Batteries Included](https://github.com/batteries-included.png)
![User avatar: Martide](https://github.com/martide.png)
![User avatar: Mykolas Mankevicius](https://github.com/Neophen.png)
![User avatar:](https://github.com/bo0tzz.png)
![User avatar: Brad Kilshaw](https://github.com/bkilshaw.png)
![User avatar: Vasilis Spilka](https://github.com/vasspilka.png)
![User avatar: Brendon McLean](https://github.com/brendon9x.png)
![User avatar: Mike Zornek](https://github.com/zorn.png)
![User avatar: Alan Heywood](https://github.com/ahey.png)
![User avatar: HereTask](https://github.com/heretask.png)
![User avatar: Recycla](https://github.com/recycla.png)
![User avatar: Wojtek Mach](https://github.com/wojtekmach.png)
![User avatar: Joe Sweeney](https://github.com/jswny.png)
![User avatar: Peter Ringelmann](https://github.com/Pringels.png)
![User avatar:](https://github.com/KiKoS0.png)
Next LS uses just to coordinate command tasks.
# list all tasks
just --list
# show a fzf finder of all tasks
just choose
# default task, runs `deps compile build-local
just
# install deps
just deps
# install compile
just compile
# start the local server for development in TCP mode
# see editor extension docs for information on how to connect to a server in TCP mode
just start
# run the tests
just test
# build a local burrito'd exe
just build-local
# build burrito'd exes for all platforms
just build-all
Burrito is the classic way of building Next LS, it produces a single executable that fully wraps Elixir, OTP, and your application.
Executables are output to ./burrito_out
.
# produces executables for all the targets specified in the `mix.exs` file
just build-all
# produce an executable for a single target
just build-local
You can also build Next LS as a traditional Mix release.
just build-plain
This project follows Conventional Commits and will "Squash and Merge" pull requests.
This means that you don't necessarily need to write your actual commit messages with Conventional Commits, but the Pull Request title needs to, as it is used as the commit title when squashing and merging. There is a CI check to enforce this.
Conventional Commits are required to use Release Please, which is used to automate the changelog, release, and building/publishing executables.