An open API service indexing awesome lists of open source software.

https://github.com/openchemistry/jupyterlab_cjson


https://github.com/openchemistry/jupyterlab_cjson

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# labextension

A JupyterLab extension for rendering CJSON

## Prerequisites

* `jupyterlab@^0.27.0`

## Development

Install dependencies and build Javascript:

```bash
npm install
npm run build
```

Install extension:

```bash
jupyter labextension link .
```

Uninstall extension:

```bash
jupyter labextension unlink .
```

Re-build Javascript:

```bash
npm run build
```

Watch `/src` directory and re-build on changes:

```bash
npm run watch
```