Developing Apps in MOLGENIS
You can create add-on user interfaces using html+javascript. To be able to host your app inside MOLGENIS, you need to create an archive in a specific format. To get started right away, you can download an example archive here. Following paragraphs will explain in detail how to construct and configure your resources to make it a certified MOLGENIS app.
Archive structure
If you downloaded the example archive, you probably noticed that the structure of the archive is pretty straight forward.
The index.html is your main entry point, and the contents will be interpreted and rendered by a FreeMarker engine. Relative to your index.html you can include js and css.
note: If you use absolute paths, MOLGENIS is unable to serve your resources properly
Example
The following example assumes we have a setup according to the tree structure shown in the previous paragraph.
index.html
example.js
example.css
For production usage
app-template.html
This file is needed by the target MOLGENIS-instance. It will be used to render the index.html for the production app.
Configuration
The config.json is a small configuration file that will tell MOLGENIS about your app. It contains the following parameters
Example
The following example shows every possible configuration option currently available
config.json
Note that you can not create a config.json on your root path of the project. It will not build anymore.
Available javascript variables
MOLGENIS deploys apps with a bit of system information inside a global variable to get your app up and running. These are described below.
App resource caching
To enable caching of your resources, ensure your resource files have a hash code included in their file names. So instead of example.js, use example.0943Ajd09834fd.js.
Build tools like webpack already generate your source files with a hash code included in the file name.
Using webpack for rapid app prototyping
To use webpack in rapid prototyping of your MOLGENIS apps, use the standard webpack template and make some small tweaks to make it a build -> compress -> upload
workflow.
First you need to install 2 plugins:
Make sure that you set the following two parameters in your production config.
In config/index.js
In build/webpack.prod.conf.js
These settings will ensure that your compiled resources are already in the correct file structure, and references to your resources are relative.
app-template.html
This file is needed by the target MOLGENIS-instance. It will be used to render the index.html for the production app.
Last updated