{"id":31771076,"url":"https://github.com/gordonsmith/hpcc-query","last_synced_at":"2025-10-10T03:19:12.554Z","repository":{"id":318695330,"uuid":"1072368052","full_name":"GordonSmith/hpcc-query","owner":"GordonSmith","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-08T16:38:02.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-08T18:39:05.079Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/GordonSmith.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-08T16:11:57.000Z","updated_at":"2025-10-08T16:38:05.000Z","dependencies_parsed_at":"2025-10-08T18:39:11.303Z","dependency_job_id":null,"html_url":"https://github.com/GordonSmith/hpcc-query","commit_stats":null,"previous_names":["gordonsmith/hpcc-query"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/GordonSmith/hpcc-query","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GordonSmith%2Fhpcc-query","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GordonSmith%2Fhpcc-query/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GordonSmith%2Fhpcc-query/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GordonSmith%2Fhpcc-query/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GordonSmith","download_url":"https://codeload.github.com/GordonSmith/hpcc-query/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GordonSmith%2Fhpcc-query/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002579,"owners_count":26083420,"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-10-10T02:00:06.843Z","response_time":62,"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":[],"created_at":"2025-10-10T03:19:09.466Z","updated_at":"2025-10-10T03:19:12.549Z","avatar_url":"https://github.com/GordonSmith.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hpcc-query\n\nA Node.js application for querying HPCC Systems workunits using the `@hpcc-js/comms` library.\n\n## Description\n\nThis project demonstrates how to interact with HPCC Systems ESP services to fetch and display workunit information. It connects to the HPCC Systems playground server and retrieves workunit data.\n\n## Prerequisites\n\n- Node.js (v14 or higher)\n- npm or yarn\n\n## Installation\n\n```bash\nnpm install\n```\n\n## Configuration\n\nThe application uses environment variables for configuration. Create a `.env` file in the project root:\n\n```bash\ncp .env.example .env\n```\n\nThen edit `.env` to set your HPCC Systems credentials:\n\n```env\nHPCC_BASE_URL=https://play.hpccsystems.com:18010\nHPCC_USER_ID=your-username\nHPCC_PASSWORD=your-password\n```\n\n**Environment Variables:**\n\n- `HPCC_BASE_URL` - HPCC Systems server URL (default: `https://play.hpccsystems.com:18010`)\n- `HPCC_USER_ID` - Username for authentication (default: `gordon`)\n- `HPCC_PASSWORD` - Password for authentication (default: empty string)\n\n**Note:** The `.env` file is gitignored to keep your credentials secure. Never commit credentials to the repository.\n\n## Usage\n\nRun the application:\n\n```bash\nnpm run launch\n```\n\nThis will:\n\n1. Connect to the HPCC Systems playground server\n2. Fetch a list of workunits\n3. Display workunit information\n4. Fetch detailed information about the first workunit\n\n## Debugging in VS Code\n\nTo debug this TypeScript application in VS Code:\n\n1. **Set breakpoints**: Click in the left margin of `src/index.ts` to add breakpoints\n\n2. **Start debugging**: Press `F5` or go to **Run → Start Debugging**\n\n3. **Debug controls**:\n   - `F5` - Continue\n   - `F10` - Step Over\n   - `F11` - Step Into\n   - `Shift+F11` - Step Out\n   - `Shift+F5` - Stop\n\nThe debugger will pause at your breakpoints, allowing you to inspect variables, evaluate expressions in the Debug Console, and step through the code.\n\n## Project Structure\n\n```\nhpcc-query/\n├── .env.example       # Environment variables template\n├── src/\n│   └── index.ts       # Main application entry point\n├── package.json       # Project dependencies and scripts\n├── LICENSE           # MIT License\n└── README.md         # This file\n```\n\n## Dependencies\n\n- **@hpcc-js/comms**: Library for communicating with HPCC Systems ESP services\n- **tsx**: TypeScript execution environment for Node.js\n- **dotenv**: Loads environment variables from .env file\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgordonsmith%2Fhpcc-query","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgordonsmith%2Fhpcc-query","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgordonsmith%2Fhpcc-query/lists"}