[
  {
    "path": ".gitignore",
    "content": "node_modules\n.env"
  },
  {
    "path": ".vscode/settings.json",
    "content": "{\n    \"editor.acceptSuggestionOnEnter\": \"on\"\n}"
  },
  {
    "path": "index.js",
    "content": "require('dotenv').config()\nconst express = require('express')\n\nconst app = express()\n\nconst port = 4000\n\nconst githubData = {\n    \"login\": \"hiteshchoudhary\",\n    \"id\": 11613311,\n    \"node_id\": \"MDQ6VXNlcjExNjEzMzEx\",\n    \"avatar_url\": \"https://avatars.githubusercontent.com/u/11613311?v=4\",\n    \"gravatar_id\": \"\",\n    \"url\": \"https://api.github.com/users/hiteshchoudhary\",\n    \"html_url\": \"https://github.com/hiteshchoudhary\",\n    \"followers_url\": \"https://api.github.com/users/hiteshchoudhary/followers\",\n    \"following_url\": \"https://api.github.com/users/hiteshchoudhary/following{/other_user}\",\n    \"gists_url\": \"https://api.github.com/users/hiteshchoudhary/gists{/gist_id}\",\n    \"starred_url\": \"https://api.github.com/users/hiteshchoudhary/starred{/owner}{/repo}\",\n    \"subscriptions_url\": \"https://api.github.com/users/hiteshchoudhary/subscriptions\",\n    \"organizations_url\": \"https://api.github.com/users/hiteshchoudhary/orgs\",\n    \"repos_url\": \"https://api.github.com/users/hiteshchoudhary/repos\",\n    \"events_url\": \"https://api.github.com/users/hiteshchoudhary/events{/privacy}\",\n    \"received_events_url\": \"https://api.github.com/users/hiteshchoudhary/received_events\",\n    \"type\": \"User\",\n    \"site_admin\": false,\n    \"name\": \"Hitesh Choudhary\",\n    \"company\": null,\n    \"blog\": \"https://www.youtube.com/c/HiteshChoudharydotcom\",\n    \"location\": \"India\",\n    \"email\": null,\n    \"hireable\": null,\n    \"bio\": \"I make coding videos on youtube and for courses. My youtube channel explains my work more. Check that out\",\n    \"twitter_username\": \"hiteshdotcom\",\n    \"public_repos\": 71,\n    \"public_gists\": 1,\n    \"followers\": 7037,\n    \"following\": 0,\n    \"created_at\": \"2015-03-23T13:03:25Z\",\n    \"updated_at\": \"2023-09-09T03:27:44Z\"\n  }\n  \n\napp.get('/', (req, res) => {\n    res.send('Hello World!')\n})\n\napp.get('/twitter', (req, res) => {\n    res.send('hiteshdotcom')\n})\n\napp.get('/login', (req, res) => {\n    res.send('<h1>please login at chai aur code</h1>')\n})\n\napp.get('/youtube', (req, res) => {\n    res.send(\"<h2>Chai aur code</h2>\")\n})\n\napp.get('/github', (req, res) => {\n    res.json(githubData)\n})\n\napp.listen(process.env.PORT, () => {\n    console.log(`Example app listening on port ${port}`)\n})"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"chaibackend\",\n  \"version\": \"1.0.0\",\n  \"description\": \"a basic app to deploy\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"start\": \"node index.js\"\n  },\n  \"keywords\": [\n    \"node\",\n    \"chai\"\n  ],\n  \"author\": \"hitesh choudhary\",\n  \"license\": \"ISC\",\n  \"dependencies\": {\n    \"dotenv\": \"^16.3.1\",\n    \"express\": \"^4.18.2\"\n  }\n}\n"
  }
]