[PR #1841] [CLOSED] Feature: Hoppscotch CLI #3519

Closed
opened 2026-03-17 01:07:34 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/1841
Author: @gitaalekhyapaul
Created: 9/27/2021
Status: Closed

Base: mainHead: gitaalekhyapaul-hoppscotch-cli


📝 Commits (6)

  • edcd858 feat: begin hoppscotch-cli project
  • 4f9efec feat: entry point of CLI
  • 6c274e1 feat: debugger and error handling
  • 324c87c feat: collection, request and context validation
  • f0c430f feat: config test runner
  • 9321344 ci: update broken pnpm lock

📊 Changes

24 files changed (+1746 additions, -4 deletions)

View changed files

packages/hoppscotch-cli/.gitignore (+146 -0)
packages/hoppscotch-cli/CODE_OF_CONDUCT.md (+132 -0)
packages/hoppscotch-cli/CONTRIBUTING.md (+78 -0)
packages/hoppscotch-cli/LICENSE (+21 -0)
packages/hoppscotch-cli/README.md (+63 -0)
packages/hoppscotch-cli/assets/demo.gif (+0 -0)
packages/hoppscotch-cli/bin/hopp-cli (+5 -0)
packages/hoppscotch-cli/debugger.js (+16 -0)
packages/hoppscotch-cli/package.json (+49 -0)
packages/hoppscotch-cli/src/commands/index.ts (+3 -0)
packages/hoppscotch-cli/src/commands/test/index.ts (+121 -0)
packages/hoppscotch-cli/src/commands/test/request-parser.ts (+227 -0)
packages/hoppscotch-cli/src/index.ts (+57 -0)
packages/hoppscotch-cli/src/schemas/collection.ts (+188 -0)
packages/hoppscotch-cli/src/schemas/context.ts (+12 -0)
packages/hoppscotch-cli/src/schemas/index.ts (+5 -0)
packages/hoppscotch-cli/src/schemas/types/hopp-rest-request.ts (+218 -0)
packages/hoppscotch-cli/src/tsconfig.json (+19 -0)
packages/hoppscotch-cli/src/utils/debugger.ts (+80 -0)
packages/hoppscotch-cli/src/utils/error-codes.ts (+23 -0)

...and 4 more files

📄 Description

This is part of the GitHub Externships 1.0

Feature: Hoppscotch CLI

Work done so far:

  • Collection JSON parsing and validation
  • Request execution and response output

Work to be done:

  • Support for environment variables
  • Pre-request script proccessing
  • Post-request script testing

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/1841 **Author:** [@gitaalekhyapaul](https://github.com/gitaalekhyapaul) **Created:** 9/27/2021 **Status:** ❌ Closed **Base:** `main` ← **Head:** `gitaalekhyapaul-hoppscotch-cli` --- ### 📝 Commits (6) - [`edcd858`](https://github.com/hoppscotch/hoppscotch/commit/edcd858bd7a4a768dc9de2b7001453020b91fb37) feat: begin hoppscotch-cli project - [`4f9efec`](https://github.com/hoppscotch/hoppscotch/commit/4f9efec925fa05687516f07a8a91fd1730aae439) feat: entry point of CLI - [`6c274e1`](https://github.com/hoppscotch/hoppscotch/commit/6c274e13ad4a9d1459f5c5230f6e068fc5e3464b) feat: debugger and error handling - [`324c87c`](https://github.com/hoppscotch/hoppscotch/commit/324c87cc016446246a2a1cbe2a5de2f4f06ec361) feat: collection, request and context validation - [`f0c430f`](https://github.com/hoppscotch/hoppscotch/commit/f0c430f02a3406c79dffdff00d940368ce6eb27e) feat: config test runner - [`9321344`](https://github.com/hoppscotch/hoppscotch/commit/932134482a5fab296b9467668760aa23288e465a) ci: update broken pnpm lock ### 📊 Changes **24 files changed** (+1746 additions, -4 deletions) <details> <summary>View changed files</summary> ➕ `packages/hoppscotch-cli/.gitignore` (+146 -0) ➕ `packages/hoppscotch-cli/CODE_OF_CONDUCT.md` (+132 -0) ➕ `packages/hoppscotch-cli/CONTRIBUTING.md` (+78 -0) ➕ `packages/hoppscotch-cli/LICENSE` (+21 -0) ➕ `packages/hoppscotch-cli/README.md` (+63 -0) ➕ `packages/hoppscotch-cli/assets/demo.gif` (+0 -0) ➕ `packages/hoppscotch-cli/bin/hopp-cli` (+5 -0) ➕ `packages/hoppscotch-cli/debugger.js` (+16 -0) ➕ `packages/hoppscotch-cli/package.json` (+49 -0) ➕ `packages/hoppscotch-cli/src/commands/index.ts` (+3 -0) ➕ `packages/hoppscotch-cli/src/commands/test/index.ts` (+121 -0) ➕ `packages/hoppscotch-cli/src/commands/test/request-parser.ts` (+227 -0) ➕ `packages/hoppscotch-cli/src/index.ts` (+57 -0) ➕ `packages/hoppscotch-cli/src/schemas/collection.ts` (+188 -0) ➕ `packages/hoppscotch-cli/src/schemas/context.ts` (+12 -0) ➕ `packages/hoppscotch-cli/src/schemas/index.ts` (+5 -0) ➕ `packages/hoppscotch-cli/src/schemas/types/hopp-rest-request.ts` (+218 -0) ➕ `packages/hoppscotch-cli/src/tsconfig.json` (+19 -0) ➕ `packages/hoppscotch-cli/src/utils/debugger.ts` (+80 -0) ➕ `packages/hoppscotch-cli/src/utils/error-codes.ts` (+23 -0) _...and 4 more files_ </details> ### 📄 Description # This is part of the GitHub Externships 1.0 # Feature: Hoppscotch CLI ## Work done so far: - Collection JSON parsing and validation - Request execution and response output ## Work to be done: - Support for environment variables - Pre-request script proccessing - Post-request script testing --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:07:34 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#3519
No description provided.