{"id":29955129,"url":"https://github.com/phucbm/npm-utils-template","last_synced_at":"2025-08-03T17:10:56.532Z","repository":{"id":302234117,"uuid":"1011567926","full_name":"phucbm/npm-utils-template","owner":"phucbm","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-01T23:20:57.000Z","size":122,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-02T04:34:32.725Z","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/phucbm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"phucbm","patreon":"phucbm","open_collective":"phucbm","ko_fi":"phucbm","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2025-07-01T02:56:17.000Z","updated_at":"2025-07-13T13:40:27.000Z","dependencies_parsed_at":"2025-07-01T09:26:11.335Z","dependency_job_id":"8ab14e0d-984e-4c9a-99d8-bdf521fa6027","html_url":"https://github.com/phucbm/npm-utils-template","commit_stats":null,"previous_names":["phucbm/npm-utils-template"],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/phucbm/npm-utils-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phucbm%2Fnpm-utils-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phucbm%2Fnpm-utils-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phucbm%2Fnpm-utils-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phucbm%2Fnpm-utils-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phucbm","download_url":"https://codeload.github.com/phucbm/npm-utils-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phucbm%2Fnpm-utils-template/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268578914,"owners_count":24273089,"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-08-03T02:00:12.545Z","response_time":2577,"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-08-03T17:10:51.786Z","updated_at":"2025-08-03T17:10:56.495Z","avatar_url":"https://github.com/phucbm.png","language":"TypeScript","funding_links":["https://github.com/sponsors/phucbm","https://patreon.com/phucbm","https://opencollective.com/phucbm","https://ko-fi.com/phucbm"],"categories":[],"sub_categories":[],"readme":"# PROJECT_NAME\nA TypeScript utility package\n\n[![npm version](https://badgen.net/npm/v/PACKAGE_NAME?icon=npm)](https://www.npmjs.com/package/PACKAGE_NAME)\n[![npm downloads](https://badgen.net/npm/dm/PACKAGE_NAME?icon=npm)](https://www.npmjs.com/package/PACKAGE_NAME)\n[![npm dependents](https://badgen.net/npm/dependents/PACKAGE_NAME?icon=npm)](https://www.npmjs.com/package/PACKAGE_NAME)\n[![github stars](https://badgen.net/github/stars/USERNAME/PROJECT_NAME?icon=github)](https://github.com/USERNAME/PROJECT_NAME/)\n[![github license](https://badgen.net/github/license/USERNAME/PROJECT_NAME?icon=github)](https://github.com/USERNAME/PROJECT_NAME/blob/main/LICENSE)\n\n## 🚀 Quick Start\n\n### Use this template with gen-from (recommended)\n```bash\n# Generate from this template\nnpx gen-from npm-utils-template\n\n# Or use interactive mode\nnpx gen-from\n\n# Generate in current directory\nnpx gen-from npm-utils-template --here\n```\n\n### Or use GitHub's \"Use this template\" button\nClick the green \"Use this template\" button on the [GitHub repository page](https://github.com/USERNAME/PROJECT_NAME).\n\n## Installation\n```bash\nnpm i PACKAGE_NAME\n```\n```bash\npnpm add PACKAGE_NAME\n```\n\n## Usage\n```typescript\nimport {myUtilityFunction} from 'PACKAGE_NAME'\n// or\nimport myUtilityFunction from 'PACKAGE_NAME'\n\n// Basic usage\nconst result = myUtilityFunction('your input');\n```\n\n## API\n### `myUtilityFunction(input?: any): any`\nMain utility function that processes the input.\n\n**Parameters:**\n- `input` (optional) - The input to process\n\n**Returns:**\n- The processed result\n\n### `processElement(element: HTMLElement): HTMLElement`\nFunction for DOM element processing.\n\n**Parameters:**\n- `element` - HTML element to process\n\n**Returns:**\n- The processed element\n\n## Development\n```bash\n# Install dependencies\npnpm install\n\n# Run tests\npnpm test\n\n# Build the package\npnpm run build\n\n# Run tests in watch mode\npnpm run test:watch\n```\n\n## Automated Workflows\n```\n┌─────────────┐    ┌─────────────┐    ┌─────────────┐    ┌─────────────┐\n│ DEPENDABOT  │───▶│    TEST     │───▶│   RELEASE   │───▶│   PUBLISH   │\n└─────────────┘    └─────────────┘    └─────────────┘    └─────────────┘\n```\n\nThis repository uses automated dependency management and publishing:\n- **📦 Dependabot** - Creates PRs for dependency updates (daily for npm, weekly for actions)\n- **🧪 Test PR Action** - Auto-tests and merges passing Dependabot PRs with comment feedback  \n- **🚀 Dependabot Release Action** - Creates releases with patch version bumps when dependencies merge\n- **📤 Publish NPM Action** - Builds and publishes to npm registry when releases are created\n\n## License\nMIT © [USERNAME](https://github.com/USERNAME)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphucbm%2Fnpm-utils-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphucbm%2Fnpm-utils-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphucbm%2Fnpm-utils-template/lists"}