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.isactive
Juno.jl includes features which allow package developers to create enhanced displays in Juno.
For example, we can print provide structured display for arbitrary objects (similar to Base.dump)
Juno.structure
Profiles collected by Profile.@profile can be displayed as a flame chart
(similar to ProfileView.jl)
inside of Juno by calling Juno.profiler.
There's also a Juno.@profiler macro which does the same as Profile.@profile
but also displays the collected information as a flame chart after clearing all the collected backtraces beforehand.
Just using the Juno.@profiler macro will be enough for most cases.
Juno.profiler
Juno.@profiler
Clicking on one of the boxes in the profile view will take you to the corresponding file/line. The width of the boxes in the profile view and the length of the lines in the editor correspond to the percentage of calls made in that line. Also note that there are specially colored lines:
- yellow means the line was dynamically dispatched
- red means there was a garbage collection happened at the line
!!! tip See the performance tips or this thread for how/why dynamic dispatch can affect the performance.
To clear the profile view and the in-editor display,
click the Forget Plot button in the profile view toolbar or use Julia Client: Clear Profile command.
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
or a comprehension via the command:
@progress for ...The following functions provide this interface:
Juno.@progress
Juno.progress
It is recommended to either use the @progress macro or the
progress(name = "Foo") do p
endnotation to ensure that the progress bars are properly unregistered in the frontend.
Juno.jl lets package developers interact with users via the Atom frontend.
allows the user to select from a list of options:
Juno.selector
sends an OS-level notification:
Juno.notify
sends an notification via Atom's builtin notification API:
Juno.notification
queries the currently used syntax colors in Atom (, which can be used to generate a plot theme or an OhMyREPL syntax theme from that, etc).
Juno.syntaxcolors
!!! note "example usecases"
- plot theme: Plots.theme(:juno) automatically create a plot theme based on your Atom syntax color, using this function internally
- OhMyREPL.jl theme: the package doesn't not provide an integrated theme by default, but here are snippets you can create its theme based on your Atom syntax theme:
+ JunoLab/Juno.jl#15 (comment)
+ https://github.com/aviatesk/avi-atom/blob/f752e8efd8f3d68e5cd1e1f948562c5d237415e8/scripts/junostartup.jl
clears the Juno REPL:
Juno.clearconsole
!!! note
you can clear any Juno terminal via Ctrl-J Ctrl-C (i.e. Julia Client: Clear REPL command).



