[PR #2074] [MERGED] Feature: hopp-cli in TypeScript #3619

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

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2074
Author: @devblin
Created: 1/20/2022
Status: Merged
Merged: 3/28/2022
Merged by: @AndrewBastin

Base: mainHead: devblin/hopp-cli


📝 Commits (10+)

  • 655a5dd feat: resuming hopp-cli typescript version
  • 609cd4a refactor: added hoppscotch-data package with minor updates
  • 26704fe refactor: updated existing code with new hoppscotch/data imports and minor changes
  • 96ed4c4 fix: lockfile
  • c54b071 refactor: dir re-structuring
  • c532183 revert: removed local test-dependency
  • ec654cb fix: lock-file
  • 6b488c0 feat: test runner
  • 1b56c7d fix: lock-file
  • 999593c docs: updated package.json, LICENSE

📊 Changes

36 files changed (+2654 additions, -119 deletions)

View changed files

packages/hoppscotch-cli/.gitignore (+146 -0)
packages/hoppscotch-cli/.prettierrc (+8 -0)
packages/hoppscotch-cli/CODE_OF_CONDUCT.md (+128 -0)
packages/hoppscotch-cli/CONTRIBUTING.md (+57 -0)
packages/hoppscotch-cli/LICENSE (+21 -0)
packages/hoppscotch-cli/README.md (+52 -0)
packages/hoppscotch-cli/bin/hopp (+3 -0)
packages/hoppscotch-cli/package.json (+45 -0)
packages/hoppscotch-cli/src/commands/test.ts (+24 -0)
packages/hoppscotch-cli/src/handlers/error.ts (+85 -0)
packages/hoppscotch-cli/src/index.ts (+60 -0)
packages/hoppscotch-cli/src/interfaces/request.ts (+36 -0)
packages/hoppscotch-cli/src/interfaces/response.ts (+68 -0)
packages/hoppscotch-cli/src/tsconfig.json (+19 -0)
packages/hoppscotch-cli/src/types/errors.ts (+36 -0)
packages/hoppscotch-cli/src/types/request.ts (+31 -0)
packages/hoppscotch-cli/src/types/response.ts (+28 -0)
packages/hoppscotch-cli/src/utils/checks.ts (+155 -0)
packages/hoppscotch-cli/src/utils/collections.ts (+129 -0)
packages/hoppscotch-cli/src/utils/constants.ts (+7 -0)

...and 16 more files

📄 Description

Hopp-cli

Description

New hopp-cli written in TypeScript

Note: Work in progress


🔄 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/2074 **Author:** [@devblin](https://github.com/devblin) **Created:** 1/20/2022 **Status:** ✅ Merged **Merged:** 3/28/2022 **Merged by:** [@AndrewBastin](https://github.com/AndrewBastin) **Base:** `main` ← **Head:** `devblin/hopp-cli` --- ### 📝 Commits (10+) - [`655a5dd`](https://github.com/hoppscotch/hoppscotch/commit/655a5ddf94199feb85e2f4abb0d7500db341a739) feat: resuming hopp-cli typescript version - [`609cd4a`](https://github.com/hoppscotch/hoppscotch/commit/609cd4ae17069df87f78df2c0b2562caf510c0aa) refactor: added hoppscotch-data package with minor updates - [`26704fe`](https://github.com/hoppscotch/hoppscotch/commit/26704fee60805bb2024aca8fc20cdb53de5bcbc2) refactor: updated existing code with new hoppscotch/data imports and minor changes - [`96ed4c4`](https://github.com/hoppscotch/hoppscotch/commit/96ed4c4bb2863f882cb2b3df409952f97007b72a) fix: lockfile - [`c54b071`](https://github.com/hoppscotch/hoppscotch/commit/c54b07137e53a9beaa33dcdc80e764b4daeba516) refactor: dir re-structuring - [`c532183`](https://github.com/hoppscotch/hoppscotch/commit/c5321835fac29d9ed05c3abee98b110b50cf009a) revert: removed local test-dependency - [`ec654cb`](https://github.com/hoppscotch/hoppscotch/commit/ec654cb0d4f76986fab5d2a24fe608bc2f378c42) fix: lock-file - [`6b488c0`](https://github.com/hoppscotch/hoppscotch/commit/6b488c091df97e963d2e2689fdf15fe41f294454) feat: test runner - [`1b56c7d`](https://github.com/hoppscotch/hoppscotch/commit/1b56c7d9b4db0998b0fb17a7a647c0f56fe90260) fix: lock-file - [`999593c`](https://github.com/hoppscotch/hoppscotch/commit/999593ca203ab1309183be39c51ba5769e21da62) docs: updated package.json, LICENSE ### 📊 Changes **36 files changed** (+2654 additions, -119 deletions) <details> <summary>View changed files</summary> ➕ `packages/hoppscotch-cli/.gitignore` (+146 -0) ➕ `packages/hoppscotch-cli/.prettierrc` (+8 -0) ➕ `packages/hoppscotch-cli/CODE_OF_CONDUCT.md` (+128 -0) ➕ `packages/hoppscotch-cli/CONTRIBUTING.md` (+57 -0) ➕ `packages/hoppscotch-cli/LICENSE` (+21 -0) ➕ `packages/hoppscotch-cli/README.md` (+52 -0) ➕ `packages/hoppscotch-cli/bin/hopp` (+3 -0) ➕ `packages/hoppscotch-cli/package.json` (+45 -0) ➕ `packages/hoppscotch-cli/src/commands/test.ts` (+24 -0) ➕ `packages/hoppscotch-cli/src/handlers/error.ts` (+85 -0) ➕ `packages/hoppscotch-cli/src/index.ts` (+60 -0) ➕ `packages/hoppscotch-cli/src/interfaces/request.ts` (+36 -0) ➕ `packages/hoppscotch-cli/src/interfaces/response.ts` (+68 -0) ➕ `packages/hoppscotch-cli/src/tsconfig.json` (+19 -0) ➕ `packages/hoppscotch-cli/src/types/errors.ts` (+36 -0) ➕ `packages/hoppscotch-cli/src/types/request.ts` (+31 -0) ➕ `packages/hoppscotch-cli/src/types/response.ts` (+28 -0) ➕ `packages/hoppscotch-cli/src/utils/checks.ts` (+155 -0) ➕ `packages/hoppscotch-cli/src/utils/collections.ts` (+129 -0) ➕ `packages/hoppscotch-cli/src/utils/constants.ts` (+7 -0) _...and 16 more files_ </details> ### 📄 Description ## Hopp-cli ### Description New hopp-cli written in TypeScript > Note: Work in progress --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:13:01 +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#3619
No description provided.