{"id":15290731,"url":"https://github.com/dmstern/npmfrog","last_synced_at":"2025-04-13T10:12:24.965Z","repository":{"id":32944358,"uuid":"142540929","full_name":"dmstern/npmfrog","owner":"dmstern","description":"A npmjs.org-like web interface for jFrog Artifactory with material design","archived":false,"fork":false,"pushed_at":"2023-11-30T14:36:48.000Z","size":4358,"stargazers_count":3,"open_issues_count":19,"forks_count":3,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2023-12-18T10:08:41.657Z","etag":null,"topics":["artifactory","jfrog-artifactory","material-design","npm","npmjs","package-manager","registry","rest","typescript","verdaccio","vuejs","vuetify"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/dmstern.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}},"created_at":"2018-07-27T07:07:24.000Z","updated_at":"2023-12-20T15:48:09.756Z","dependencies_parsed_at":"2023-01-14T22:46:39.261Z","dependency_job_id":"584e909b-6bdf-429b-ad54-55f5e9580b42","html_url":"https://github.com/dmstern/npmfrog","commit_stats":null,"previous_names":[],"tags_count":40,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmstern%2Fnpmfrog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmstern%2Fnpmfrog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmstern%2Fnpmfrog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmstern%2Fnpmfrog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmstern","download_url":"https://codeload.github.com/dmstern/npmfrog/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248695482,"owners_count":21146956,"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":["artifactory","jfrog-artifactory","material-design","npm","npmjs","package-manager","registry","rest","typescript","verdaccio","vuejs","vuetify"],"created_at":"2024-09-30T16:09:13.587Z","updated_at":"2025-04-13T10:12:24.925Z","avatar_url":"https://github.com/dmstern.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# npmFrog\n\n\u003e A nice npmjs.org-like web interface for JFrog Artifactory\n\nTo share code in your company or team between different projects and developers, you can use a private npm registry like [Verdaccio](https://verdaccio.org/) or [JFrog's Artifactory](https://www.jfrog.com/confluence/display/RTF/Npm+Registry) (which is often used for Maven dependency management in the Java Environment).\nThe latter lacks a good UI for web developers, so npmFrog is here to present you the self-hosted packages of your team in a more familiar and discoverable way.\n\n👐 It's free and open source. :)\n\n## Core Features\n\n- _The homepage: an overview list of your company's packages._\n\n  ![Screenshot: package list](art/screenshot-list.png)\n\n- _The awesome package search: lookup tags, crafters and packages._\n\n  ![Screenshot: search](art/screenshot-search.png)\n\n- _Every package has a detail page to view a lot of useful meta information. Even the remote-cache packages._\n\n  ![Screenshot: package detail page](art/screenshot-detail.png)\n\n- _Get details about the people who crafted the package to contact them or to search for other packages by the same author._\n\n  ![Screenshot: crafter info](art/screenshot-crafter.png)\n\n- _Get an overview of all npm scripts in the `package.json`._\n\n  ![Screenshot: scripts](art/screenshot-scripts.png)\n\n- _Inspect files that are contained in the package and view or download its code._\n\n  ![Screenshot: file inspector](art/screenshot-files.png)\n\n## Prerequisites\n\n- [Node.js \u003e= 8.x](https://nodejs.org/en/download/)\n- JFrog Artifactory is running somewhere in your company's network\n\n## Installation\n\n```bash\nnpm i -g npmfrog\n```\n\n## Usage\n\n### Start\n\n```bash\nnpmfrog\n```\n\nBrowse to npmFrog instance [http://localhost:8000](http://localhost:8000).\n\n### Stop\n\n```bash\nnpmfrog stop\n```\n\n### Show logs\n\n```bash\nnpmfrog logs\n```\n\n### Show status\n\n```bash\nnpmfrog status\n```\n\n### Configuration\n\nAt the first startup, npmFrog will create a configuration file in your home directory under `~/.npmfrog/config.json`. Please fill this file with your artifactory properties.\n\nIf you want to add additional text in the `/howto` section, you can create a `howto.md` file in the `~/.npmfrog` directory with some additional [markdown](https://www.markdownguide.org/) content.\n\n![Screenshot of additional howto.md in ~/.npmfrog/](art/Screenshot-howto.png)\n\nIf you want to hide the default publishing guide under `/howto`, set `howto.default` in the `config.json` file to `false`.\n\n```json\n  \"howto\": {\n    \"default\": false\n  }\n```\n\n### Development\n\nRun the development task with real back-end data:\n\n```bash\nnpm run dev\n```\n\nWith a local environment and dummy data (no internet connection needed):\n\n```bash\nnpm start\n```\n\nTo see the logs, run\n\n```bash\nnpm run logs\n```\n\nStop all running background processes:\n\n```bash\nnpm stop\n```\n\nSee the status of background processes:\n\n```bash\nnpm run ps\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmstern%2Fnpmfrog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmstern%2Fnpmfrog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmstern%2Fnpmfrog/lists"}