Skip to content

Latest commit

 

History

History
50 lines (46 loc) · 841 Bytes

README.md

File metadata and controls

50 lines (46 loc) · 841 Bytes

Twitter Tracker

A simple web application to collect tweets from Twitter, analyze and display them on word clouds or maps. To run the app from a fresh repo clone, just run the commands npm install and npm start in sequence. These commands will install all dependencies, build the project and start the server.

API

POST /auth/login

Request Body:

username: string
password: string

Response Body:

token: string

PUT /tweet-collections/:name

Request Params:

name: string

Body:

name: string
tweets: Tweet[]

GET /tweet-collections/:name

Request Params:

name: string

Response Body:

name: string
tweets: Tweet[]

DELETE /tweet-collections/:name

Request Params:

name: string