https://github.com/sagemathinc/cocalc
Raw File
Tip revision: c4baa8c3cc5b0eb0782dc4e9adb327cf0ba239f3 authored by William A. Stein on 03 May 2022, 06:03:58 UTC
jupyter: switch entirely to newer slate/react based markdown and html rendering in all situations, rather than the old jquery, code. This does a much better job at sanitization, e.g., when trust = false it uses the full xss library. Also, math in markdown gets properly parsed via a plugin.
Tip revision: c4baa8c
DEVELOPMENT.md
# Development Information

- Source code is in the `src/` subdirectory.
- Additional development information _**(which hasn't been updated in years!)**_ is in the `docs/` directory.

## Development

All development of CoCalc is done from within a cocalc project running on https://cocalc.com.  

See `src/README.md` to get started doing development.

## The Components of CoCalc

### Node.js modules

- **smc-util:**      utility code used in the browser and servers
- **smc-util-node:** utility code used in servers
- **smc-hub:**       backend web and compute server code
- **smc-project:**   server code that runs in user projects
- **smc-webapp:**    frontend client code that runs in browser
- See also the packages/ subdirectory.

### Python modules

- **smc_pyutil:**    scripts and code used on servers
- **smc_sagews:**    Sage server
back to top