Fetches the posts from CSI NSIT page, displays the posts and Total likes & Shares
cd into the cloned directory
npm install
Run the following commands in mysql
create database csidb;
use csidb;
CREATE TABLE posts(myid integer auto_increment primary key , post_id varchar(200) , message varchar(20000), time varchar(100));
Go to the route/db.js Set the username and password in dbconfig.
node server
The site will run on CSI_post_fetcher
Hope you like it ! :)