The Juno.jl Front-End

The Juno.jl Front-End

Juno provides some functionality using Atom's UI, which will usually have a fallback for use in other environments.

The isactive() function will provide an interface for figuring out whether the current session is running within Juno:

Juno.isactiveFunction.
isactive()

Will return true when the current Julia process is connected to a running Juno frontend.

source

Enhanced Display

Juno.jl includes features which allow package developers to created enhanced displays in Juno.

For example, we can print provide structured display for arbitrary objects (similar to Base.dump)

structure

Juno.structureFunction.
structure(x)

Display x's underlying representation, rather than using its normal display method.

For example, structure(:(2x+1)) displays the Expr object with its head and args fields instead of printing the expression.

source

Profiler

Profiles collected by @profile can be displayed as a flame chart (similar to ProfileView.jl) inside of Juno by calling Juno.profiler(). Juno.profiletree() will display the stack trace similar to the output of Base's Profile.print(). There's also a @profiler macro which does the same as @profile but also displays the collected information as a flame chart and clears all collected backtraces beforehand.

Juno.profilerFunction.
profiler()

Show currently collected profile information as an in-editor flamechart.

source
Juno.profiletreeFunction.
profiletree()

Show currently collected profile information in tree-form. Falls back to Profile.print().

source
Juno.@profilerMacro.
@profiler

Clear currently collected profile traces, profile the provided expression and show it via Juno.profiler().

source

profiler

Clicking on one of the boxes in the profile view will take you to the corresponding file/line. The length of the lines in the editor correspond to the percentage of calls made in that line; to clear the profile view and the in-editor display, click the Forget Plot button in the profile view toolbar.

Progress Meters

Juno.jl allows package developers to use the progress bar which is provided in the Atom window. For example, you can easily show a progress meter for a for loop via the command:

@progress for ...

progress

The following functions provide this interface:

Juno.@progressMacro.
@progress [name="", threshold=0.005] for i = ...

Show a progress meter named name for the given loop if possible. Update frequency is limited by threshold (one update per 0.5% of progress by default).

source
Juno.progressFunction.
progress(p::ProgressBar, prog::Number)

Update p's progress to prog.

source
progress(p::ProgressBar)

Set p to an indeterminate progress bar.

source
progress(f::Function; name = "", msg = "")

Evaluates f with p = ProgressBar(name = name, msg = msg) as the argument and calls done(p) afterwards. This is guaranteed to clean up the progress bar, even if f errors.

source
Juno.ProgressBarFunction.
ProgressBar(;name = "", msg = "")

Create a new progress bar and register it with Juno, if possible.

Take care to unregister the progress bar by calling done on it, or use the progress(f::Function) syntax, which will handle that automatically.

source
Juno.nameFunction.
name(p::ProgressBar, m)

Update ps name.

source
Juno.msgFunction.
msg(p::ProgressBar, m)

Update the message that will be displayed in the frontend when hovering over the corrseponding progress bar.

source
Juno.right_textFunction.
right_text(p::ProgressBar, m)

Update the string that will be displayed to the right of the progress bar.

Defaults to the linearly extrapolated remaining time based upon the time difference between registering a progress bar and the latest update.

source
Juno.doneFunction.
done(p::ProgressBar)

Remove p from the frontend.

source

It is recommended to either use the @progress macro or the

progress(name = "Foo") do p

end

notation to ensure that the progress bars are properly unregistered in the frontend.

Interaction

Juno.jl lets package developers interact with users via the Atom frontend. For example, you can allow the user to select from a list of options:

Juno.selectorFunction.
selector([xs...]) -> x

Allow the user to select one of the xs.

xs should be an iterator of strings. Currently there is no fallback in other environments.

source

selector

or send an OS-level notification:

Juno.notifyFunction.
notify(msg)

Display msg as an OS specific notification.

Useful for signaling the end of a long running computation or similar. This disregards the Notifications setting in julia-client. Falls back to info(msg) in other environments.

source

You can also use

Juno.syntaxcolorsFunction.
syntaxcolors(selectors = Atom.SELECTORS)::Dict{String, UInt32}

Get the colors used by the current Atom theme. selectors should be a Dict{String, Vector{String}} which assigns a css selector (e.g. syntax--julia) to a name (e.g. variable).

source

for querying the currently used syntax colors in Atom (and generate a plot theme or an OhMyREPL syntax theme from that).

The console can be cleared with

Juno.clearconsoleFunction.
clearconsole()

Clear the console if Juno is used; does nothing otherwise.

source

or Ctrl-J Ctrl-C.