{"id":22701388,"url":"https://github.com/benzoogataga/vanguardterminal","last_synced_at":"2026-02-08T15:31:56.605Z","repository":{"id":266557821,"uuid":"898642762","full_name":"BENZOOgataga/VanguardTerminal","owner":"BENZOOgataga","description":"A web-based terminal I made for fun","archived":false,"fork":false,"pushed_at":"2024-12-05T11:32:11.000Z","size":66,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-31T05:18:55.214Z","etag":null,"topics":["command","commands","console","linux","node-js","nodejs","terminal","web","web-based","website"],"latest_commit_sha":null,"homepage":"https://localhost:3000/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BENZOOgataga.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-04T19:03:03.000Z","updated_at":"2025-01-31T22:18:57.000Z","dependencies_parsed_at":"2025-04-22T22:32:02.706Z","dependency_job_id":"6b499bcf-2353-40f3-b945-4bfb7f2f458e","html_url":"https://github.com/BENZOOgataga/VanguardTerminal","commit_stats":null,"previous_names":["benzoogataga/vanguardterminal"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/BENZOOgataga/VanguardTerminal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BENZOOgataga%2FVanguardTerminal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BENZOOgataga%2FVanguardTerminal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BENZOOgataga%2FVanguardTerminal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BENZOOgataga%2FVanguardTerminal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BENZOOgataga","download_url":"https://codeload.github.com/BENZOOgataga/VanguardTerminal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BENZOOgataga%2FVanguardTerminal/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266854694,"owners_count":23995489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command","commands","console","linux","node-js","nodejs","terminal","web","web-based","website"],"created_at":"2024-12-10T07:08:32.374Z","updated_at":"2026-02-08T15:31:56.560Z","avatar_url":"https://github.com/BENZOOgataga.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Vanguard Industries Terminal\n\nAn interactive web terminal I made for fun with friends on my Minecraft SMP. It has real file management capabilities. This project uses **Node.js** and **Express** to simulate a command terminal that allows you to create, edit, delete, and list files in a `data` folder. I'm willing to make it a \"SCP-like\" terminal in the future.\n\n## Features\n\n- **Available commands**:\n  - `help`: Displays a list of available commands.\n  - `about`: Displays information about the terminal.\n  - `clear`: Clears the terminal screen.\n  - `pwd`: Displays the current directory (simulated as `/data`).\n  - `echo [text]`: Displays the provided text.\n  - `touch [filename]`: Creates an empty file in the `data` folder.\n  - `edit [filename]`: Edits an existing file in the `data` folder.\n  - `rm [filename]`: Deletes a file from the `data` folder.\n  - `ls`: Lists files in the `data` folder.\n  - `cat [filename]`: Displays the content of a file in the `data` folder.\n\n## Prerequisites\n\nBefore you begin, you must have **Node.js** installed on your machine.\n\n1. Download and install Node.js from [nodejs.org](https://nodejs.org/).\n2. Verify the installation:\n   ```bash\n   node -v\n   npm -v\n   ```\n\n## Installation\n\n### Step 1: Clone the repository\n\nClone the repository to your local machine:\n\n```bash\ngit clone https://github.com/BENZOOgataga/VanguardTerminal.git\ncd VanguardTerminal\n```\n\n### Step 2: Install dependencies\n\nInstall the required dependencies using `npm`:\n\n```bash\nnpm install\n```\n\n### Step 3: Start the server\n\nStart the server with **Node.js**:\n\n```bash\nnode server.js\n```\n\nOr, to use **Nodemon** (which automatically restarts the server when code changes):\n\n```bash\nnpm install -g nodemon\nnodemon server.js\n```\n\n### Step 4: Access the terminal\n\nOpen your browser and navigate to [http://localhost:3000](http://localhost:3000). You will see the terminal interface where you can enter commands.\n\n## Usage\n\nOnce the server is running, you can use the following commands in the terminal:\n\n- **`touch [filename]`**: Creates an empty file in the `data` folder. Example: `touch example.txt`.\n- **`edit [filename]`**: Edits an existing file in the `data` folder. Example: `edit example.txt`.\n- **`rm [filename]`**: Deletes a file from the `data` folder. Example: `rm example.txt`.\n- **`ls`**: Lists existing files in the `data` folder.\n- **`cat [filename]`**: Displays the content of a file. Example: `cat example.txt`.\n- **`pwd`**: Displays the current directory (`/data`).\n- **`echo [text]`**: Displays the text you provided. Example: `echo Hello, Vanguard!`\n\n## Project Structure\n\n```\nVanguardTerminal/\n├── data/               # Contains created/modified files\n├── public/             # Contains frontend files (HTML, CSS, JS)\n│   ├── index.html\n│   ├── styles.css\n│   ├── script.js\n├── server.js           # Node.js server that handles API requests\n├── package.json        # Dependencies and npm scripts\n└── package-lock.json\n```\n\n## Contribution\n\n1. Fork the repository.\n2. Create a branch for your feature (`git checkout -b feature-new-feature`).\n3. Make your changes.\n4. Commit the changes (`git commit -am 'Added a new feature'`).\n5. Push your branch (`git push origin feature-new-feature`).\n6. Create a Pull Request.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n## Contact\n\nIf you have any questions or suggestions, feel free to open an **issue** or contact me via GitHub/Discord.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenzoogataga%2Fvanguardterminal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenzoogataga%2Fvanguardterminal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenzoogataga%2Fvanguardterminal/lists"}