composablesys / collabs

Collabs library monorepo

Home Page:https://collabs.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Collabs

Collabs is a collections library for collaborative data structures. These are data structures that look like Set, Map, Array, etc., except they are synchronized between multiple users: when one user changes a collaborative data structure, their changes show up for every other user. You can use them to quickly build collaborative apps along the lines of Google Docs/Sheets/Slides, shared whiteboards, etc.

Docs

See https://collabs.readthedocs.io/

Source Code

This monorepo has a folder for each published package plus related code. In particular:

Developing

Run npm i (or npm ci, to use pinned package versions) in this folder. That will install all packages in this repo as an npm workspace, symlinked so that updates to one package are automatically made available to other packages (once they are built).

To run commands in the docs/ folder, also install its Python dependencies: pip install -r docs/requirements.txt.

When installing dependencies, instead of running npm i <dependency> in the relevant package's folder, you should run npm i <dependency> -w <package> in this top-level folder. That will ensure that the dependency is installed in the workspace's top-level node_modules folder, but it is recorded in the correct package's package.json. See https://docs.npmjs.com/cli/v7/using-npm/workspaces#adding-dependencies-to-a-workspace.

If you are only making changes to one package, you can skip running npm i in this directory and instead do it only in the directory for the package you are working on.

About

Collabs library monorepo

https://collabs.readthedocs.io/

License:Apache License 2.0


Languages

Language:TypeScript 97.5%Language:JavaScript 2.0%Language:Shell 0.5%Language:Procfile 0.0%