Repository: hiteshchoudhary/chaibackend Branch: main Commit: cccc25140118 Files: 4 Total size: 2.5 KB Directory structure: gitextract_pjr0oa5c/ ├── .gitignore ├── .vscode/ │ └── settings.json ├── index.js └── package.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ node_modules .env ================================================ FILE: .vscode/settings.json ================================================ { "editor.acceptSuggestionOnEnter": "on" } ================================================ FILE: index.js ================================================ require('dotenv').config() const express = require('express') const app = express() const port = 4000 const githubData = { "login": "hiteshchoudhary", "id": 11613311, "node_id": "MDQ6VXNlcjExNjEzMzEx", "avatar_url": "https://avatars.githubusercontent.com/u/11613311?v=4", "gravatar_id": "", "url": "https://api.github.com/users/hiteshchoudhary", "html_url": "https://github.com/hiteshchoudhary", "followers_url": "https://api.github.com/users/hiteshchoudhary/followers", "following_url": "https://api.github.com/users/hiteshchoudhary/following{/other_user}", "gists_url": "https://api.github.com/users/hiteshchoudhary/gists{/gist_id}", "starred_url": "https://api.github.com/users/hiteshchoudhary/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hiteshchoudhary/subscriptions", "organizations_url": "https://api.github.com/users/hiteshchoudhary/orgs", "repos_url": "https://api.github.com/users/hiteshchoudhary/repos", "events_url": "https://api.github.com/users/hiteshchoudhary/events{/privacy}", "received_events_url": "https://api.github.com/users/hiteshchoudhary/received_events", "type": "User", "site_admin": false, "name": "Hitesh Choudhary", "company": null, "blog": "https://www.youtube.com/c/HiteshChoudharydotcom", "location": "India", "email": null, "hireable": null, "bio": "I make coding videos on youtube and for courses. My youtube channel explains my work more. Check that out", "twitter_username": "hiteshdotcom", "public_repos": 71, "public_gists": 1, "followers": 7037, "following": 0, "created_at": "2015-03-23T13:03:25Z", "updated_at": "2023-09-09T03:27:44Z" } app.get('/', (req, res) => { res.send('Hello World!') }) app.get('/twitter', (req, res) => { res.send('hiteshdotcom') }) app.get('/login', (req, res) => { res.send('