{"id":16832663,"url":"https://github.com/zswang/npdep","last_synced_at":"2026-05-19T10:39:07.052Z","repository":{"id":143901634,"uuid":"46175804","full_name":"zswang/npdep","owner":"zswang","description":"Automatic import NPM's main file to HTML","archived":false,"fork":false,"pushed_at":"2018-01-23T01:41:01.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-25T01:07:27.681Z","etag":null,"topics":["import","npm"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zswang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2015-11-14T13:34:59.000Z","updated_at":"2018-01-23T01:43:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"b6ec5407-3f76-4b5b-b4b9-fa86425231dd","html_url":"https://github.com/zswang/npdep","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zswang/npdep","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zswang%2Fnpdep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zswang%2Fnpdep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zswang%2Fnpdep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zswang%2Fnpdep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zswang","download_url":"https://codeload.github.com/zswang/npdep/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zswang%2Fnpdep/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265314158,"owners_count":23745208,"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","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":["import","npm"],"created_at":"2024-10-13T11:49:57.690Z","updated_at":"2026-05-19T10:39:07.020Z","avatar_url":"https://github.com/zswang.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"npdep\n----\n\n# [![NPM version][npm-image]][npm-url] \n\nAutomatic import NPM's main file to HTML\n\nHTML 自动引入 NPM main 文件\n\n## example\n\nindex.html\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n  \u003cmeta charset=\"utf8\"\u003e\n  \u003ctitle\u003enpdep example\u003c/title\u003e\n  \u003c!--npdep depend=\"jquery,iscroll\"--\u003e\n  \u003c!--/npdep--\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n`$ npdep`\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n  \u003cmeta charset=\"utf8\"\u003e\n  \u003ctitle\u003enpdep example\u003c/title\u003e\n  \u003c!--npdep depend=\"jquery,iscroll\"--\u003e\n  \u003cscript src=\"node_modules/jquery/dist/jquery.js\"\u003e\u003c/script\u003e\n  \u003cscript src=\"node_modules/iscroll/build/iscroll.js\"\u003e\u003c/script\u003e\n  \u003c!--/npdep--\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\nindex.html\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n  \u003cmeta charset=\"utf8\"\u003e\n  \u003ctitle\u003enpdep example\u003c/title\u003e\n  \u003c!--npdep depend=\"*\"--\u003e\n  \u003c!--/npdep--\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n`$ npdep`\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n  \u003cmeta charset=\"utf8\"\u003e\n  \u003ctitle\u003enpdep example\u003c/title\u003e\n  \u003c!--npdep depend=\"jquery,iscroll\"--\u003e\n  \u003cscript src=\"node_modules/jquery/dist/jquery.js\"\u003e\u003c/script\u003e\n  \u003cscript src=\"node_modules/jhtmls/jhtmls.js\"\u003e\u003c/script\u003e\n  \u003cscript src=\"node_modules/iscroll/build/iscroll.js\"\u003e\u003c/script\u003e\n  \u003c!--/npdep--\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n## License\n\nMIT © [zswang](http://weibo.com/zswang)\n\n[npm-url]: https://npmjs.org/package/npdep\n[npm-image]: https://badge.fury.io/js/npdep.svg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzswang%2Fnpdep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzswang%2Fnpdep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzswang%2Fnpdep/lists"}