0.8.6 • Published 1 week ago
@kerebron/extension-tables
Licence
MIT
Version
0.8.6
Deps
0
Vulns
0
Weekly
0
Kerebron - Prosemirror based online editor kit
Watch a Demo
Playground Demo
playground - be nice.
Overview
Using vanilla Prosemirror modules is often impossible because of incompatibilities.
Kerebron forks several prosemirror projects into one monorepo in order to keep them in sync.
Project is inspired on https://tiptap.dev/, but instead of building wrapper around a wrapper it borrows concept of extension and command manager.
It has simplified tooling (deno), fewer dependencies and resulting in lower number of output npm modules.
Work in progress
Build
Update git submodules
git submodule init
git submodule update
Build static examples and .wasm files
deno task -f @kerebron/odt-wasm build
deno task -f @kerebron build
Development
To start example server:
deno task dev
Examples
TODO
NPM packages are generated using DNT
- https://deno.com/blog/publish-esm-cjs-module-dnt - the easiest way to publish a hybrid npm module for ESM and CommonJS
- https://github.com/denoland/dnt
- https://gaubee.com/article/Publishing-Your-Deno-Project-as-a-Monorepo-using-dnt/
To generate npm packages
deno -A ./utils/build_npm.ts
Run through docker
docker build . -t editor-test
docker run -it -p 8000:8000 -v $PWD:/usr/src/app editor-test
Prerequisites
Install deno
npm install -g deno
Install rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh