https://github.com/openchemistry/jupyterlab_cjson
https://github.com/openchemistry/jupyterlab_cjson
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/openchemistry/jupyterlab_cjson
- Owner: OpenChemistry
- Created: 2017-05-04T13:29:20.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T21:39:21.000Z (over 3 years ago)
- Last Synced: 2025-04-03T23:03:24.858Z (over 1 year ago)
- Language: JavaScript
- Size: 813 KB
- Stars: 3
- Watchers: 4
- Forks: 4
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
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
```