Does sentiment analysis on tweets about a topic of your choosing.
cd App
npm install
cd Server
npm install
npm run serve
node index.js
- The Vue app creates a socket connection and sends your query string to the server.
- The server starts a stream to fetch tweets based on the user's query and sends it to the user using the socket.
- Vue app does sentiment analysis on these tweets and prints a neat pie chart with the result.
Note: Make sure both the App and Server are running before reporting bugs.
This is for a college project. Plus it looked pretty fun. Inspired by this.