{"id":18833123,"url":"https://github.com/kingcc/node-package-template","last_synced_at":"2026-05-09T00:12:40.375Z","repository":{"id":226571055,"uuid":"769019738","full_name":"kingcc/node-package-template","owner":"kingcc","description":"A simple npm package template that uses TypeScript, pnpm, EsNext.","archived":false,"fork":false,"pushed_at":"2024-06-07T07:54:15.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-29T17:47:17.323Z","etag":null,"topics":["esnext","nodejs","npm","package","pnpm","simple","template","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kingcc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":null},"created_at":"2024-03-08T07:13:17.000Z","updated_at":"2024-06-07T07:54:19.000Z","dependencies_parsed_at":"2024-03-08T10:30:00.161Z","dependency_job_id":"376040c4-b5f0-4659-8a32-8d3c00977cbf","html_url":"https://github.com/kingcc/node-package-template","commit_stats":null,"previous_names":["kingcc/node-package-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/kingcc/node-package-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingcc%2Fnode-package-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingcc%2Fnode-package-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingcc%2Fnode-package-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingcc%2Fnode-package-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kingcc","download_url":"https://codeload.github.com/kingcc/node-package-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kingcc%2Fnode-package-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32802607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["esnext","nodejs","npm","package","pnpm","simple","template","typescript"],"created_at":"2024-11-08T02:00:24.920Z","updated_at":"2026-05-09T00:12:38.343Z","avatar_url":"https://github.com/kingcc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cpackage_name\u003e\n\n\u003cpackage_description\u003e\n\n```ts\n  \u003cpackage_demo\u003e\n```\n\n## Install\n\n### Node.js\n\nInstall using `npm` or other package managers:\n\n```\nnpm install \u003cpackage_author_name\u003e/\u003cpackage_name\u003e\n```\n\nImport into your Node.js project:\n\n```js\n// CommonJS\nconst { \u003cpackage_name\u003e } = require(\"\u003cpackage_author_name\u003e/\u003cpackage_name\u003e\")\n\n// ESM\nimport { \u003cpackage_name\u003e } from \"\u003cpackage_author_name\u003e/\u003cpackage_name\u003e\"\n```\n\n### Deno\n\nInstall using [JSR](https://jsr.io):\n\n```shell\ndeno add \u003cpackage_author_name\u003e/\u003cpackage_name\u003e\n\n#or\n\njsr add \u003cpackage_author_name\u003e/\u003cpackage_name\u003e\n```\n\nThen import into your Deno project:\n\n```js\nimport { \u003cpackage_name\u003e } from \"\u003cpackage_author_name\u003e/\u003cpackage_name\u003e\"\n```\n\n### Bun\n\nInstall using this command:\n\n```\nbun add \u003cpackage_author_name\u003e/\u003cpackage_name\u003e\n```\n\nImport into your Bun project:\n\n```js\nimport { \u003cpackage_name\u003e } from \"\u003cpackage_author_name\u003e/\u003cpackage_name\u003e\"\n```\n\n### Browser\n\nIt's recommended to import the minified version to save bandwidth:\n\n```js\nimport { \u003cpackage_name\u003e } from \"https://cdn.skypack.dev/\u003cpackage_author_name\u003e/\u003cpackage_name\u003e?min\"\n```\n\nHowever, you can also import the unminified version for debugging purposes:\n\n```js\nimport { \u003cpackage_name\u003e } from \"https://cdn.skypack.dev/\u003cpackage_author_name\u003e/\u003cpackage_name\u003e\"\n```\n\n## License\n\nThis project is licensed under the [GPL-3.0](./LICENCE).\n\n## Author\n\n[\u003cpackage_author_name\u003e](https://github.com/\u003cpackage_author_name\u003e)\n\n---\n\nFeel free to customize this template according to the needs of your package. If your package requires more complex setup, it's good to include detailed instructions on configuration, API references, and a changelog. Always ensure that the documentation is up to date with the latest code changes.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkingcc%2Fnode-package-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkingcc%2Fnode-package-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkingcc%2Fnode-package-template/lists"}