Skip to content
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.

mamba-org/mamba-navigator

Repository files navigation

Mamba Navigator

Archived

This project is archived. Development is now happening in https://github.com/mamba-org/jupyter_conda

Try it online

Open Mamba Navigator:

Binder

Open JupyterLab:

Binder

lab-launcher

Development

# create a new conda environment
conda env create --file=binder/environment.yml

# activate the environment
conda activate mamba-navigator

# install the dependencies
yarn

# build the application
yarn run build

# start the app
python main.py

# or with the --no-browser option
python main.py --no-browser

The app will open in the browser at http://localhost:8888.

There is also a watch script to automatically rebuild the application when there is a new change:

yarn run watch

Adding a new plugin

New plugins can be added to the application, by creating a new folder under src/plugins and requiring it in the app startup.

Plugins follow the same structure and principles as the core JupyterLab Plugins, and can integrate with other JavaScript libraries such as React.

It is possible to reuse existing third-party JupyterLab extensions in this custom build, by adding them to the dependencies in package.json and to the list of modules in src/index.ts. Check the p5 Notebook index.ts file as an example.

Resources

For more examples on building custom JupyterLab-based front-ends: