Awesome
Hocuspocus
A plug & play collaboration backend based on Y.js.
Documentation
The full documentation is a available on hocuspocus.dev/introduction.
Cloud Hosting
You want to use Hocuspocus, but don't want to care about hosting? Check our Cloud Offering: Tiptap Collab
Feedback
Send all your questions, feedback and bug reports to humans@tiptap.dev or create an issue here.
Usage
The following example is a example setup you need to start a WebSocket server. By default, it’s listening on http://127.0.0.1 (or prefixed with the WebSocket protocol on ws://127.0.0.1):
import { Server } from '@hocuspocus/server'
import { SQLite } from '@hocuspocus/extension-sqlite'
const server = Server.configure({
port: 80,
async onConnect() {
console.log('🔮')
},
extensions: [
new SQLite({
database: 'db.sqlite',
}),
],
})
server.listen()
Community
For help, discussion about best practices, or any other conversation:
Join the Tiptap Discord Server
Sponsors 💖
<table> <tr> <td align="center"> <a href="https://ueberdosis.io/"> <img src="https://unavatar.io/github/ueberdosis" width="100"><br> <strong>überdosis</strong> </a> </td> <td align="center"> <a href="https://cargo.site/"> <img src="https://unavatar.io/github/cargo" width="100"><br> <strong>Cargo</strong> </a> </td> <td align="center"> <a href="https://saga.so/"> <img src="https://unavatar.io/saga.so" width="100"><br> <strong>Saga</strong> </a> </td> <td align="center"> <a href="https://www.gamma.app/"> <img src="https://unavatar.io/gamma.app" width="100"><br> <strong>Gamma</strong> </a> </td> <td align="center"> <a href="https://www.getoutline.com/"> <img src="https://unavatar.io/github/outline" width="100"><br> <strong>Outline</strong> </a> </td> <td align="center"> <a href="https://ahrefs.com/"> <img src="https://unavatar.io/ahrefs.com" width="100"><br> <strong>Ahrefs</strong> </a> </td> <td align="center"> <a href="https://github.com/brickdoc"> <img src="https://unavatar.io/github/brickdoc" width="100"><br> <strong>Brickdoc</strong> </a> </td> <td align="center"> <a href="https://www.sanalabs.com/"> <img src="https://unavatar.io/github/sanalabs" width="100"><br> <strong>Sana</strong> </a> </td> </tr> <tr> <td align="center"> <a href="https://poggio.io"> <img src="https://unavatar.io/github/poggiolabs" width="100"><br> <strong>Poggio</strong> </a> </td> </tr> </table>… and hundreds of awesome inviduals.
Using Hocuspocus in production? Invest in the future of Hocuspocus and become a sponsor!
Contributing
Please see CONTRIBUTING for details.
Contributors
kris (who wrote the initial version), Tom Moor, YousefED (@TypeCellOS) and many more.
License
The MIT License (MIT). Please see License File for more information.