This repository contains the source code for CKEditor 5 tutorials. Each package has starter files and the final code for each tutorial (or part).
All tutorials can be found in the CKEditor 5 framework documentation.
After cloning this repository, go into the directory of the tutorial and install all the dependencies first.
npm install
Under the hood, each tutorial uses Vite as a module bundler. You can start a development server using the below command.
npm run dev
After running the command, you should be able to see the tutorial project in the browser at localhost and a specific port, most likely - http://localhost:5173/. The development server provides a Hot Module Replacement over native ES modules. It means that any update to the tutorial will be reflected immediately in the browser. Don't hesitate to tinker and experiment!
- Creating a basic plugin - Timestamp
- Creating an advanced plugin - Abbreviation