Skip to content

Create Apps for Scifeon

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.

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.

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.

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.

Apps are typically structured like this:

{{include:../reference/apps/includes/_app-folder-structure.md}}

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