Introduction
A beautiful, yet simple library that brings a comment area into your blog.
Note that it is not a SaaS, you will need a database (SQLite, PostgreSQL, MySQL) to continue.
Client
Currently, we provide a React.js client API.
Fuma Comment doesn't force an Auth system on your app, you can use your own Auth system, like integrating with BetterAuth.
By default, it calls an API endpoint to get authentication data, you will need to provide a signIn
function for user to sign in.
Styling
All components are pre-styled with Tailwind CSS, notice that it also normalizes your CSS (Preflight).
For projects using Tailwind CSS v4, use the Tailwind CSS preset instead:
Database
You need a database to persist comments.
Fuma Comment has built-in support for multiple ORMs, you can copy the required schemas:
Other Adapters
you may implement your own storage adapter following the instructions in TSDoc of StorageAdapter
.
Auth Provider
Fuma Comment supports multiple auth providers, you can choose one of them:
NextAuth
BetterAuth
Server
Fuma Comment supports several web/backend frameworks to host the backend server.
Next.js
Create app/api/comments/[[...comment]]/route.ts
.
Express
Pass your express app as a parameter, all the endpoints will be added under /api/comments
.
Elysia
Done!
You can now have fun with Fuma Comment!