{"id":31273608,"url":"https://github.com/multiocular-com/multiocular","last_synced_at":"2025-09-23T22:03:55.294Z","repository":{"id":310818669,"uuid":"1041406754","full_name":"multiocular-com/multiocular","owner":"multiocular-com","description":"ꙮ Review dependencies changes to prevent supply chain attack","archived":false,"fork":false,"pushed_at":"2025-09-16T19:27:08.000Z","size":934,"stargazers_count":162,"open_issues_count":27,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-19T02:24:28.236Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/multiocular-com.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"github":"ai"}},"created_at":"2025-08-20T12:47:30.000Z","updated_at":"2025-09-18T15:42:24.000Z","dependencies_parsed_at":"2025-09-03T20:16:14.491Z","dependency_job_id":null,"html_url":"https://github.com/multiocular-com/multiocular","commit_stats":null,"previous_names":["multiocular-com/multiocular"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/multiocular-com/multiocular","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiocular-com%2Fmultiocular","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiocular-com%2Fmultiocular/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiocular-com%2Fmultiocular/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiocular-com%2Fmultiocular/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/multiocular-com","download_url":"https://codeload.github.com/multiocular-com/multiocular/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiocular-com%2Fmultiocular/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275958351,"owners_count":25559736,"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-09-19T02:00:09.700Z","response_time":108,"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-09-23T22:01:55.346Z","updated_at":"2025-09-23T22:03:55.289Z","avatar_url":"https://github.com/multiocular-com.png","language":"TypeScript","readme":"# ꙮ Multiocular\n\n\u003cpicture \u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./images/logo-dark.png\"\u003e\n  \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"./images/logo-light.png\"\u003e\n  \u003cimg width=\"100\" height=\"100\" alt=\"Multiocular logo\" align=\"right\" src=\"./images/logo-light.png\" /\u003e\n\u003c/picture\u003e\n\nA Node.js tool to **review dependencies** changes to:\n\n- Prevent **supply chain attack**.\n- Catch **API breaking changes**.\n- **Learn** from your dependencies.\n\nIn general, it adds **open dependencies** practice to your project and stop treating node_modules as a black box.\n\nIt supports: `npm`, `pnpm`, `yarn 1`, `yarn berry`, GitHub Actions.\n\n\u003cpicture\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./images/screenshot-dark.png\"\u003e\n  \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"./images/screenshot-light.png\"\u003e\n  \u003cimg alt=\"Fallback image description\" src=\"./images/screenshot-light.png\"\u003e\n\u003c/picture\u003e\n\n---\n\n\u003cimg src=\"https://cdn.evilmartians.com/badges/logo-no-label.svg\" alt=\"\" width=\"22\" height=\"16\" /\u003e  Built by\n\u003cb\u003e\u003ca href=\"https://evilmartians.com/devtools?utm_source=postcss\u0026utm_campaign=devtools-button\u0026utm_medium=github\"\u003eEvil Martians\u003c/a\u003e\u003c/b\u003e, go-to agency for \u003cb\u003edeveloper tools\u003c/b\u003e.\n\n---\n\n## Usage\n\nFirst, reduce risk of exposing system to malware during the update.\n\nDisable `postinstall` for npm:\n\n```sh\nnpm config set ignore-scripts true\n# We also recommend switching to pnpm where postinstall is disabled by default\n```\n\nIt is also recommended of using [Dev Container](https://code.visualstudio.com/docs/devcontainers/containers) or at least run shell in container.\n\nInstall Multiocular:\n\n```sh\nnpm install multiocular\n# pnpm install multiocular\n```\n\nUpdate dependencies\n\n```sh\n# For npm\nnpx npm-check-updates\nnpm update\n\n# For pnpm\npnpm update-interactive --latest\npnpm update\n\n# For GitHub Actions\nnpx actions-up\n```\n\nStart web UI to review changes:\n\n```sh\nnpx multiocular\n```\n\nIf you have GitHub API limit, define `GITHUB_TOKEN` environment variable with [personal token](https://github.com/settings/personal-access-tokens/new) with access to public repositories.\n\n## Motivation\n\nCurrent practice of treating dependencies and free **black boxes** is creating a lot of issues in our industries.\n\nFor instance, **Supply chain attack** when malware added to dependencies by stealing maintainer account. Recent, [`chalk`/`debug`](https://www.aikido.dev/blog/npm-debug-and-chalk-packages-compromised), [`nx`](https://www.aikido.dev/blog/popular-nx-packages-compromised-on-npm), and [GitHub Actions](https://www.wiz.io/blog/github-action-tj-actions-changed-files-supply-chain-attack-cve-2025-30066) examples are showing that it is just beginning.\n\nWe suggest another **open dependencies** model, when team should track dependencies. It means less dependencies and more attention to it. But this is the only solution we see.\n","funding_links":["https://github.com/sponsors/ai"],"categories":["Utilities","TypeScript"],"sub_categories":["Project Tools"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiocular-com%2Fmultiocular","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmultiocular-com%2Fmultiocular","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiocular-com%2Fmultiocular/lists"}