Signup-less chat rooms to connect with friends and family instantly.
Create instant chat rooms without the hassle of signing up. Share the link and start chatting with friends and family right away!
- No Sign-up Required - Jump straight into conversations without creating an account
- Instant Room Creation - Generate unique room codes and share with anyone
- Real-time Messaging - Powered by Pusher for instant message delivery
- Clean & Minimal UI - Distraction-free interface for seamless communication
- Persistent Storage - Redis + Postgres for message caching and room management
- Private Rooms - Access controlled via unique room codes
- Framework: Next.js 16 with App Router
- Language: TypeScript
- Database: Neon (Serverless Postgres)
- ORM: Drizzle ORM
- Real-time: Pusher
- Cache/Session: Upstash Redis
- Styling: Tailwind CSS v4
- Deployment: Vercel
- Node.js 18+ and pnpm
- Neon (Postgres) database
- Upstash Redis instance
- Pusher app credentials
- Clone the repository
git clone https://github.com/yourusername/wick-chat.git
cd wick-chat- Install dependencies
pnpm install- Set up environment variables
Copy .env.example to .env.local and fill in your credentials:
DATABASE_URL=postgresql://user:password@ep-xxxx-pooler.us-east-1.aws.neon.tech/neondb?sslmode=require
UPSTASH_REDIS_REST_URL=https://your-region.upstash.io
UPSTASH_REDIS_REST_TOKEN=your_upstash_token
NEXT_PUBLIC_PUSHER_KEY=your_pusher_key
NEXT_PUBLIC_PUSHER_CLUSTER=your_pusher_cluster
PUSHER_APP_ID=your_pusher_app_id
PUSHER_SECRET=your_pusher_secret
NEXT_PUBLIC_BASE_URL=http://localhost:3000
# SEO / Verification (optional — for Search Console + Bing Webmaster Tools)
NEXT_PUBLIC_GOOGLE_VERIFICATION=your-google-search-console-code
NEXT_PUBLIC_BING_VERIFICATION=your-bing-webmaster-code- Push database schema
npx drizzle-kit push- Run the development server
pnpm devOpen http://localhost:3000 in your browser.
wick-chat/
├── app/ # Next.js App Router pages and API routes
│ ├── api/ # API route handlers
│ ├── join/ # Join room page
│ ├── new/ # Create room page
│ └── room/ # Chat room page
├── components/ # React components
│ ├── ui/ # shadcn/ui primitives
│ ├── Home/ # Home page components
│ └── Message/ # Chat/message components
├── lib/ # Utilities, types, and configurations
│ └── db/ # Drizzle schema and client
├── hooks/ # Custom React hooks
├── public/ # Static assets
└── migrations/ # Drizzle migrations
| Method | Path | Description |
|---|---|---|
| POST | /api/create |
Create a new room |
| POST | /api/join |
Join an existing room |
| GET | /api/messages/[roomCode] |
Get room messages |
| POST | /api/messages/send |
Send a message |
Deploy on Vercel:
- Push your code to GitHub
- Import the project in Vercel
- Configure environment variables (use Vercel Environment Variables, not .env files)
- Deploy
- Typing indicators
- Message reactions
- File sharing
- Voice messages
- Custom room themes
This project is open source and available under the MIT License.