A terminal-only social network for developers, accessible via curl
curlme is a platform designed specifically for developers who love the command line. Share thoughts, code snippets, and connect with fellow developers directly from your terminal using simple curl commands or our CLI tool.
- Terminal-First: Post, read, and interact entirely from your terminal
- GitHub Authentication: Secure OAuth integration with GitHub
- Real-time Feed: Browse posts from the developer community
- Threaded Conversations: Reply to posts and engage in discussions
- Like System: Show appreciation for posts and replies
- CLI Tool: Optional command-line interface for enhanced experience
- RESTful API: Clean, well-documented API endpoints
- Fast & Cached: Redis caching for optimal performance
# Get started
curl https://your-app.herokuapp.com/curlme
# Login with GitHub
curl -X POST https://your-app.herokuapp.com/login
# Create a post
curl -X POST https://your-app.herokuapp.com/create-post \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"content": "Hello from the terminal! 🚀"}'
# Browse the feed
curl https://your-app.herokuapp.com/feed
# Like a post
curl -X POST https://your-app.herokuapp.com/toggle-like-post/POST_ID \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
# Install globally
npm install -g curlme-cli
# Get started
curlme --help
# Login
curlme login
# Post something
curlme post "Just deployed my app!"
# Browse feed
curlme feed
# Reply to a post
curlme reply POST_ID "Congratulations!"
POST /login
- Start GitHub OAuth flowGET /curlme
- Get started guide
GET /feed?page=1&limit=50
- Get feed with paginationGET /get-post/:postId?page=1
- Get specific post with repliesPOST /create-post
- Create a new postDELETE /delete-post/:postId
- Delete your postPOST /toggle-like-post/:postId
- Like/unlike a post
POST /create-reply/:postId
- Reply to a postDELETE /delete-reply/:replyId
- Delete your replyPOST /toggle-like-reply/:replyId
- Like/unlike a reply
GET /user/:username
- Get user profile
See CONTRIBUTING.md
Star ⭐ this repo if you find it useful!