Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 14 days 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:27:30.000Z (almost 2 years ago)
- Last Synced: 2024-10-28T00:17:32.523Z (2 months ago)
- Topics: expressjs, nodejs, reactjs, twitter-api
- Language: JavaScript
- Size: 573 KB
- Stars: 1
- Watchers: 2
- 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