Twitter Clone Local
Minimal local Twitter-like demo (no npm dependencies).
Run
cd /home/bill/Documents/CLionProjects/whetstone_DSL/example_projects/twitter_clone_local
node server.js
Then open:
Features
- Create tweets
- Like tweets
- Reply to tweets
- Timeline refresh
API
GET /api/healthGET /api/tweetsPOST /api/tweetsbody:{ "author": "...", "text": "..." }POST /api/tweets/:id/likePOST /api/tweets/:id/replybody:{ "author": "...", "text": "..." }