-
Notifications
You must be signed in to change notification settings - Fork 0
Features
github-actions[bot] edited this page Feb 23, 2026
·
1 revision
Complete reference of all 78+ features in nself-chat, organized by category.
| Category | Features | Status |
|---|---|---|
| Messaging | 14 | Implemented |
| Channels | 9 | Implemented |
| Files & Media | 8 | Implemented |
| Users & Presence | 7 | Implemented |
| Real-time | 5 | Implemented |
| Search | 6 | Implemented |
| Notifications | 6 | Implemented |
| Emoji & Reactions | 4 | Implemented |
| Polls & Voting | 3 | Implemented |
| Voice Messages | 4 | Implemented |
| Bots & Automation | 6 | Implemented |
| Admin | 6 | Implemented |
| Moderation | 6 | Implemented |
| Feature | Description | Flag |
|---|---|---|
| Edit Messages | Modify sent messages | messages.edit |
| Delete Messages | Remove messages | messages.delete |
| Reactions | Emoji reactions on messages | messages.reactions |
| Threads | Threaded replies | messages.threads |
| Pins | Pin important messages | messages.pins |
| Bookmarks | Save messages for later | messages.bookmarks |
| Forward | Forward to other channels | messages.forward |
| Schedule | Send messages later | messages.schedule |
| Voice Messages | Audio message recording | messages.voice |
| Code Blocks | Syntax-highlighted code | messages.codeBlocks |
| Markdown | Rich text formatting | messages.markdown |
| Link Previews | URL unfurling | messages.linkPreviews |
| Mentions | @user and @channel | messages.mentions |
| Quotes | Quote previous messages | messages.quotes |
| Feature | Description | Flag |
|---|---|---|
| Public Channels | Open to all members | channels.public |
| Private Channels | Invite-only access | channels.private |
| Direct Messages | 1-on-1 conversations | channels.direct |
| Group DMs | Multi-user DMs | channels.groupDm |
| Categories | Organize channels | channels.categories |
| Topics | Channel descriptions | channels.topics |
| Archive | Archive inactive channels | channels.archive |
| Favorites | Star channels | channels.favorites |
| Mute | Silence notifications | channels.mute |
| Feature | Description | Flag |
|---|---|---|
| File Upload | Upload attachments | files.upload |
| Images | Image attachments | files.images |
| Documents | PDF, DOC, etc. | files.documents |
| Audio | Audio file uploads | files.audio |
| Video | Video file uploads | files.video |
| Preview | In-app file viewing | files.preview |
| Drag & Drop | Drag files to upload | files.dragDrop |
| Clipboard | Paste images | files.clipboard |
| Feature | Description | Flag |
|---|---|---|
| Presence | Online/away status | users.presence |
| Custom Status | Custom status messages | users.customStatus |
| Profiles | User profile pages | users.profiles |
| Roles | Role-based permissions | users.roles |
| Blocking | Block users | users.blocking |
| Avatars | Profile pictures | users.avatars |
| Display Names | Custom display names | users.displayNames |
| Feature | Description | Flag |
|---|---|---|
| Typing Indicators | Show who's typing | realtime.typing |
| Read Receipts | Message read status | realtime.readReceipts |
| Presence Updates | Live presence | realtime.presence |
| Live Messages | Instant delivery | realtime.messages |
| Live Notifications | Push notifications | realtime.notifications |
| Feature | Description | Flag |
|---|---|---|
| Message Search | Search messages | search.messages |
| File Search | Search files | search.files |
| User Search | Search users | search.users |
| Global Search | Cross-content search | search.global |
| Search Filters | Advanced filters | search.filters |
| Highlighting | Result highlighting | search.highlighting |
| Feature | Description | Flag |
|---|---|---|
| Desktop | Browser notifications | notifications.desktop |
| Sound | Audio alerts | notifications.sound |
| Email notifications | notifications.email |
|
| Mobile | Push notifications | notifications.mobile |
| Do Not Disturb | Pause notifications | notifications.dnd |
| Schedule | Quiet hours | notifications.schedule |
| Feature | Description | Flag |
|---|---|---|
| Custom Emoji | Upload custom emoji | advanced.customEmoji |
| GIF Picker | Giphy/Tenor integration | advanced.gifPicker |
| Stickers | Sticker packs | advanced.stickers |
| Polls | Create polls | advanced.polls |
| Webhooks | Incoming/outgoing hooks | advanced.webhooks |
| Bots | Bot accounts | advanced.bots |
| Slash Commands | /command support | advanced.slashCommands |
| Integrations | Third-party apps | advanced.integrations |
| Reminders | Set reminders | advanced.reminders |
| Workflows | Automation | advanced.workflows |
| Video Calls | Video conferencing | advanced.videoCalls |
| Screen Share | Share your screen | advanced.screenShare |
| Feature | Description | Flag |
|---|---|---|
| Dashboard | Admin overview | admin.dashboard |
| User Management | Manage users | admin.userManagement |
| Analytics | Usage statistics | admin.analytics |
| Audit Logs | Activity logging | admin.auditLogs |
| Bulk Operations | Batch actions | admin.bulkOperations |
| Export | Data export | admin.export |
| Feature | Description | Flag |
|---|---|---|
| Moderation Tools | Content moderation | moderation.tools |
| Reporting | User reports | moderation.reporting |
| Auto-filter | Content filtering | moderation.autoFilter |
| Warnings | User warnings | moderation.warnings |
| Bans | User bans | moderation.bans |
| Slow Mode | Rate limiting | moderation.slowMode |
All features can be toggled via the AppConfig.features object or environment variables.
// Via AppConfig
const { updateConfig } = useAppConfig()
await updateConfig({
features: {
polls: true,
voiceMessages: true,
stickers: true,
},
})import { useFeature } from '@/lib/features'
function MyComponent() {
const isPollsEnabled = useFeature('advanced.polls')
if (!isPollsEnabled) return null
return <PollCreator />
}NEXT_PUBLIC_ENABLE_POLLS=true
NEXT_PUBLIC_ENABLE_VOICE_MESSAGES=true
NEXT_PUBLIC_ENABLE_STICKERS=trueSome features depend on others:
| Feature | Requires |
|---|---|
| Threads | Messaging |
| Reactions | Messaging |
| Read Receipts | Real-time |
| Typing Indicators | Real-time |
| File Preview | File Upload |
| Custom Emoji | Reactions |
nself-chat v0.3.0 | GitHub | Issues | Discussions | Demo
Edit this page | MIT License | Β© 2026
(See π Security section below for 2FA, PIN Lock, and security audits.)
(Search lives in π Reference below.)
- π¬ Advanced Messaging
- π E2EE Setup
- π Search Setup
- π Call Management
- πΊ Live Streaming
- π₯οΈ Screen Sharing
- πΉ Video Calling
- ποΈ Voice Calling
- π± Mobile Optimization
- π§ͺ Testing
- π i18n
- π API Overview
- π Complete Reference
- π» API Examples
- π€ Bot API
- π Auth API
- π GraphQL Schema
- π Deployment Overview
- π³ Docker
- βΈοΈ Kubernetes
- β Helm Charts
- β Production Checklist
- π Production Validation
- π’ Multi-Tenant
- ποΈ Architecture
- π Diagrams
- ποΈ Database Schema
- π Project Structure
- π TypeScript Types
- π SPORT Reference
- π 2FA
- π¬ Messaging
- π Call Management
- π Call State Machine
- π E2EE
- πΊ Live Streaming
- π± Mobile Calls
- π PIN Lock
- π Polls
- π₯οΈ Screen Sharing
- π Search
- π Social Media
- ποΈ Voice Calling
- π Security Overview
- π‘οΈ Security Audit
- β‘ Performance
- π Best Practices
- π 2FA
- π PIN Lock
- π E2EE
- π‘οΈ E2EE Audit
v1.0.0 β’ 2026