Find out what's new in Tiptap Editor 3.0

Install the Pages extension

Restricted ReleaseAlpha

Install and configure the Pages extension by following this guide.

Limited release

Tiptap Pages is currently available to enterprise customers as part of a limited rollout. Want in? Get in touch with our team.

Install the Pages extension

npm install @tiptap-pro/extension-pages@alpha

Integrating the Pages extension

After installing the pages extension, register it in your editor by adding the Pages extension to your editor’s extensions array.

import { Pages } from '@tiptap-pro/extension-pages'

const editor = new Editor({
  ...
  extensions: [
    ...,
    Pages,
  ]
})

Depending on your use case, you may need to configure a collaborative provider or additional options. Refer to the full documentation for advanced configuration.