Skip to content

Available Plugins

Richard Hansen edited this page Apr 2, 2022 · 27 revisions

Admins are able to view available plugins at <etherpad-instance>/admin/plugins, which also allows you to install or uninstall plugins. For a list of available plugins, see the Plugins site.

Installing Plugins with Admin Interface

  1. Enable Admin interface (edit settings.json)
  2. Login in to admin interface (yourpad.com/admin)
  3. Use admin interface http://youretherpad/admin/plugins

Video (YouTube)

Manually Installing plugins

cd /path/to/etherpad-lite
# The `--no-save` and `--legacy-peer-deps` arguments are necessary to work
# around npm quirks.
npm install --no-save --legacy-peer-deps ep_$plugin_name

Then restart Etherpad: it will detect the new plugin and use it.

Manually Uninstalling plugins

npm uninstall ep_<plugin name>

And restart Etherpad

General

Resources

For Developers

How to's

Set up

Advanced steps

Integrating Etherpad in your web app

for Developers

Clone this wiki locally