Managing external packages
This guide only applies if you created an MVC app with one of the generator functions, like in the MVC app tutorial.
Genie fully takes advantage of Julia's excellent package manager, Pkg
-- while allowing Genie developers to use any
third party package available in Julia's ecosystem. This is achieved by taking a common sense approach: Genie apps are
just plain Julia projects.
In order to add extra packages to your Genie app, thus, we need to use Julia's Pkg
features:
- start a Genie REPL with your app:
$ bin/repl
. This will automatically load the package environment of the app. - switch to
Pkg
mode:julia> ]
- add the package you want, for example
OhMyREPL
:(MyGenieApp) pkg> add OhMyREPL
That's all! Now you can use the packages at the Genie REPL or anywhere in your app via using
or import
.
Use the same approach to update the packages in your app, via: pkg> up
and apply all available updates,
or pkg> up OhMyREPL
to update a single package.