|
@@ -12,7 +12,7 @@ A JupyterLab application is comprised of:
|
|
|
- A core Application object
|
|
|
- Plugins
|
|
|
|
|
|
-A full example of an application is contained [here](https://github.com/jupyterlab/jupyterlab/tree/master/examples/lab).
|
|
|
+A full example of an application is contained [here](https://github.com/jupyterlab/jupyterlab/tree/master/examples/app).
|
|
|
Looking at the `index.js` file, you can see the extensions
|
|
|
used in the tutorial example.
|
|
|
|
|
@@ -27,17 +27,17 @@ a typed value to the plugin's `activate()` method.
|
|
|
exporting a plugin object or array of plugin objects as the default export.
|
|
|
|
|
|
The default plugins in the JupyterLab application include:
|
|
|
-- [Terminal](https://github.com/jupyterlab/jupyterlab/blob/master/src/terminal-extension/index.ts) - Adds the ability to create command prompt terminals.
|
|
|
-- [Shortcuts](https://github.com/jupyterlab/jupyterlab/blob/master/src/shortcuts-extension/index.ts) - Sets the default set of shortcuts for the application.
|
|
|
-- [Images](https://github.com/jupyterlab/jupyterlab/blob/master/src/imagewidget-extension/index.ts) - Adds a widget factory for displaying image files.
|
|
|
-- [Help](https://github.com/jupyterlab/jupyterlab/blob/master/src/help-extension/index.ts) - Adds a side bar widget for displaying external documentation.
|
|
|
-- [File Browser](https://github.com/jupyterlab/jupyterlab/blob/master/src/filebrowser-extension/index.ts) - Creates the file browser and the document manager and the file browser to the side bar.
|
|
|
-- [Editor](https://github.com/jupyterlab/jupyterlab/blob/master/src/editorwidget-extension/index.ts) - Add a widget factory for displaying editable source files.
|
|
|
-- [Console](https://github.com/jupyterlab/jupyterlab/blob/master/src/console-extension/index.ts) - Adds the ability to launch Jupyter Console instances for
|
|
|
+- [Terminal](https://github.com/jupyterlab/jupyterlab/blob/master/packages/terminal-extension/src/index.ts) - Adds the ability to create command prompt terminals.
|
|
|
+- [Shortcuts](https://github.com/jupyterlab/jupyterlab/blob/master/packages/shortcuts-extension/src/index.ts) - Sets the default set of shortcuts for the application.
|
|
|
+- [Images](https://github.com/jupyterlab/jupyterlab/blob/master/packages/imagewidget-extension/src/index.ts) - Adds a widget factory for displaying image files.
|
|
|
+- [Help](https://github.com/jupyterlab/jupyterlab/blob/master/packages/help-extension/src/index.ts) - Adds a side bar widget for displaying external documentation.
|
|
|
+- [File Browser](https://github.com/jupyterlab/jupyterlab/blob/master/packages/filebrowser-extension/src/index.ts) - Creates the file browser and the document manager and the file browser to the side bar.
|
|
|
+- [Editor](https://github.com/jupyterlab/jupyterlab/blob/master/packages/editorwidget-extension/src/index.ts) - Add a widget factory for displaying editable source files.
|
|
|
+- [Console](https://github.com/jupyterlab/jupyterlab/blob/master/packages/console-extension/src/index.ts) - Adds the ability to launch Jupyter Console instances for
|
|
|
interactive kernel console sessions.
|
|
|
-- [Services](https://github.com/jupyterlab/jupyterlab/blob/master/src/services-extension/index.ts) - An application-specific interface to `@jupyterlab/services`.
|
|
|
-- [RenderMime](https://github.com/jupyterlab/jupyterlab/blob/master/src/rendermime-extension/index.ts) - The registry for adding kernel `display_data` renderers.
|
|
|
-- [Document Registry](https://github.com/jupyterlab/jupyterlab/blob/master/src/docregistry-extension/index.ts) - Used to add functionality around widgets backed by files.
|
|
|
+- [Services](https://github.com/jupyterlab/jupyterlab/blob/master/packages/services-extension/src/index.ts) - An application-specific interface to `@jupyterlab/services`.
|
|
|
+- [RenderMime](https://github.com/jupyterlab/jupyterlab/blob/master/packages/rendermime-extension/src/index.ts) - The registry for adding kernel `display_data` renderers.
|
|
|
+- [Document Registry](https://github.com/jupyterlab/jupyterlab/blob/master/packages/docregistry-extension/src/index.ts) - Used to add functionality around widgets backed by files.
|
|
|
|
|
|
## Application Object
|
|
|
The JupyterLab Application object is given to each plugin in
|