Developer / Apps

Create Apps for Scifeon

Last updated on 26-Jun-2020 by Jakob Jakobsen Boysen
Jakob Jakobsen Boysen

Platform Lead
boysen@scifeon.com

This documentation consists of tutorials for setup and development, descriptions of available utilities for development, introduction of the Scifeon SDK and available extension points in Scifeon.

What are Apps?

Apps are simple add-ons that can be used to customize your own Scifeon platform. They are written using TypeScript and HTML, are testable and easy to debug using modern technologies. Apps usually use the Scifeon REST API for interacting with data from Scifeon.

What makes up an App?

App structure

  • An NPM-style package.json and contributions.json file contains metadata and information about the app.
  • The TypeScript and HTML files that make up the different plugins.
  • Additional resources, e.g. images and files for download.

What can you do with Apps?

There are many extension points in Scifeon that an App can utilize:

  • Pages and routes, e.g. a page showing specific tables for a specific type of result set.
  • Data loaders, e.g. for loading your specific file format or standard.
  • File downloads, e.g. for storing file templates.
  • Database views for using the database to join data instead of the client.
  • Spreadsheet functions for creating your own advanced company specific spreadsheet function.

App structure

Apps are typically structured like this:

For a deep dive, checkout the reference page App Folder Structure