https://github.com/iamgkstack/twitter-mutual-friends-list
Full Stack Project for find out the mutual friend lists
https://github.com/iamgkstack/twitter-mutual-friends-list
expressjs nodejs reactjs twitter-api
Last synced: 6 months ago
JSON representation
Full Stack Project for find out the mutual friend lists
- Host: GitHub
- URL: https://github.com/iamgkstack/twitter-mutual-friends-list
- Owner: iamgkstack
- License: mit
- Created: 2020-02-23T10:46:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:27:30.000Z (over 3 years ago)
- Last Synced: 2025-04-07T21:42:20.427Z (over 1 year ago)
- Topics: expressjs, nodejs, reactjs, twitter-api
- Language: JavaScript
- Size: 573 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# twitter-mutual-friends-list
Full Stack Project for find out the mutual friend lists
## Requirements
* NODE: `>= 10`
* YARN: `1.19.1`
## Clone the Project
```bash
# clone the project
git clone https://github.com/iamgkstack/twitter-mutual-friends-list.git
```
## Setup for the BackEnd
```bash
# Go to the backend folder
cd backend
# install the dependencies
yarn
# start the project
yarn start
# test, if you are using Windows OS
yarn test_windows_os
# test, if you are using Linux OS
yarn test_linux_os
```
* This starts the server on the port 5200
## APIs availabe
Get all the the mutual friends between two given twitter accounts
```curl
curl -X GET 'http://localhost:5200/api/v1/mutual/friends?user1=iamgk5296&user2=RamKishorBajpai'
```
## Setup for the FrontEnd
```bash
# Go to the frontend folder
cd frontend
# install the dependencies
yarn
# start the project
yarn start
```
* This starts the server on the port 3000