terminology.rst 839 B

1234567891011121314151617181920
  1. Terminology
  2. -----------
  3. Learning to use a new technology and its architecture can be complicated
  4. by the jargon used to describe components. We provide this terminology
  5. guide to help smooth the learning the components.
  6. Terms
  7. ~~~~~
  8. - Application - The main application object that hold the application
  9. shell, command registry, and keymap registry. It is provided to all
  10. plugins in their activate method.
  11. - Plugin - An object that provides a service and or extends the
  12. application.
  13. - Phosphor - The JavaScript library that provides the foundation of
  14. JupyterLab, enabling desktop-like applications in the browser.
  15. - Standalone example - An example in the ``examples/`` directory that
  16. demonstrates the usage of one or more components of JupyterLab.
  17. - TypeScript - A statically typed language that compiles to JavaScript.