A CLI&REPL toolkit for managing/developing Julia project & packages.
Ion is a Julia Language package. To install Ion, please open Julia's interactive session (known as REPL) and press ] key in the REPL to use the package mode, and then type the following command:
For stable release:
pkg> add Ion
For current master:
pkg> add Ion#master
If you would like to install the CLI, please run
using Ion; Ion.comonicon_install()
then add ~/.julia/bin
to your PATH
.
It is recommended to use juliaup for installation of Julia with Ion.
For Linux & MacOS users, copy paste the following command in your terminal
curl -fsSL https://install.julialang.org | sh
For Windows, one can use the following
winget install julia -s msstore
Each command has their own file or folder:
- implemented with only one file, then
<command>.jl
- implemented with more than one file, then
<command>/<command>.jl
is the main file containsinclude
The ion create
command of this package is based on the implementation of PkgTemplates
but modified to support CLI usage (by supporting the option type interface of Configurations
).
MIT License