Get startedGet started with Liveblocks, Tiptap, Yjs, and Vue.js

Liveblocks is a realtime collaboration infrastructure for building performant collaborative experiences. Follow the following steps to start adding collaboration to your Vue.js application using the APIs from the @liveblocks/yjs package.

Quickstart

  1. Install Liveblocks, Yjs, and Tiptap

    Every Liveblocks package should use the same version.

    $npm install @liveblocks/client @liveblocks/yjs yjs @tiptap/vue-3 @tiptap/pm @tiptap/starter-kit  @tiptap/extension-collaboration @tiptap/extension-collaboration-cursor
  2. Initialize the liveblocks.config.ts file

    We can use this file later to define types for our application.

    $npx create-liveblocks-app@latest --init --framework javascript
  3. Set up your collaborative Tiptap text editor

    Editor.vue
    <script setup>import { onUnmounted } from "vue";import { createClient } from "@liveblocks/client";import { LiveblocksYjsProvider } from "@liveblocks/yjs";import * as Y from "yjs";import { useEditor, EditorContent } from "@tiptap/vue-3";import StarterKit from "@tiptap/starter-kit";import Collaboration from "@tiptap/extension-collaboration";import CollaborationCursor from "@tiptap/extension-collaboration-cursor";
    const leave = ref(null);
    // Set up Liveblocks clientconst client = createClient({ publicApiKey: "",});
    // Enter a multiplayer roomconst info = client.enterRoom("my-room");const room = info.room;leave.value = info.leave;
    // Set up Yjs document and Liveblocks Yjs providerconst yDoc = new Y.Doc();const yProvider = new LiveblocksProvider(room, yDoc);
    // Set up the Tiptap editorconst editor = useEditor({ element, extensions: [ StarterKit.configure({ // The Collaboration extension comes with its own history handling history: false, }), // Register the Yjs document with Tiptap Collaboration.configure({ document: yDoc, }), CollaborationCursor.configure({ provider: yProvider, }), ],});
    onUnmounted(() => { leave?.();});</script>
    <template> <editor-content :editor="editor" /></template>
  4. Next: set up authentication

    By default, Liveblocks is configured to work without an authentication endpoint where everyone automatically has access to rooms. This approach is great for prototyping and marketing pages where setting up your own security isn’t always required. If you want to limit access to a room for certain users, you’ll need to set up an authentication endpoint to enable permissions.

    Set up authentication

What to read next

Congratulations! You now have set up the foundation for your collaborative Tiptap text editor inside your Vue.js application.