Tag: javascript

  • 2 – Concurrent Editing in TipTap

    2 – Concurrent Editing in TipTap

    In the first blog post in this series, we set up a basic Tiptap editor. Today, let’s enhance the editor by integrating real-time, concurrent editing capabilities using Yjs, a powerful CRDT library for shared editing, and the y-webrtc connector for peer-to-peer communication. Initial Setup Let’s start by examining the initial Tiptap setup without concurrent editing…

  • 1 – Getting Started with Tiptap

    1 – Getting Started with Tiptap

    Rich text editors are essential components of many modern web applications, providing users with powerful tools to compose and format content. Tiptap, a headless editor framework built on top of ProseMirror, is a popular choice among developers who need a flexible and extensible rich text editor in their Vue applications. In this blog post, I’ll…

  • Logging in to WordPress with Cypress Testing

    Logging in to WordPress with Cypress Testing

    Cypress is a popular end-to-end testing framework that can be used to test web applications, including those built on WordPress. One of the key features of Cypress is its ability to easily authenticate a user in the local environment, which is crucial for testing any functionality that is only available to logged-in users. In this…