{"id":37389117,"url":"https://github.com/kudobuzz/kbscripts","last_synced_at":"2026-01-16T05:26:49.512Z","repository":{"id":34067808,"uuid":"157461758","full_name":"kudobuzz/kbscripts","owner":"kudobuzz","description":"A bunch of scripts to create a zero config for all our Nodejs Projects","archived":false,"fork":false,"pushed_at":"2025-06-16T13:12:58.000Z","size":991,"stargazers_count":0,"open_issues_count":3,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-10-28T18:59:44.137Z","etag":null,"topics":["scripts","zero-config"],"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/kudobuzz.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}},"created_at":"2018-11-13T23:37:49.000Z","updated_at":"2025-06-16T13:08:45.000Z","dependencies_parsed_at":"2023-01-15T04:21:28.375Z","dependency_job_id":null,"html_url":"https://github.com/kudobuzz/kbscripts","commit_stats":null,"previous_names":["kudobuzz/kb-scripts"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kudobuzz/kbscripts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudobuzz%2Fkbscripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudobuzz%2Fkbscripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudobuzz%2Fkbscripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudobuzz%2Fkbscripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kudobuzz","download_url":"https://codeload.github.com/kudobuzz/kbscripts/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudobuzz%2Fkbscripts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"last_error":"SSL_read: 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":["scripts","zero-config"],"created_at":"2026-01-16T05:26:49.050Z","updated_at":"2026-01-16T05:26:49.502Z","avatar_url":"https://github.com/kudobuzz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ch1\u003ekbscripts 🛠\u003c/h1\u003e\n\n\u003cp\u003eCLI toolbox for common scripts across kudobuzz\u003c/p\u003e\n\u003c/div\u003e\n\n\u003chr /\u003e\n# Problem\n\nWe have quite a number of js projects and we were finding it difficult updating tooling across these projects\n\n# Solution\n\nA common configuration library\n\n## Table of Contents\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n\n- [Installation](#installation)\n- [Usage](#usage)\n  - [Scripts](#scripts)\n  - [Using eslint configs to allow ides to use your configs](#using-eslint-configs-to-allow-ides-to-use-your-configs)\n\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n# Installation\n\nThis module is distributed via [npm][npm] which is bundled with [node][node] and\nshould be installed as one of your project's `devDependencies`:\n\n```\nnpm install --save-dev @kudobuzz/kbscripts\n```\n\n# Usage\n\nInstall my running `npm install @kudobuzz/kbscripts`\n\n## Scripts\n\n1. `kbscripts lint [Specific files can go here and args for eslint]`\n\n   Lints all js files in the target project.\n\n2. `kbscripts format [Specific files can go here and other args to prettier]`  \n   Format all js,md,ts,css files in the target project.\n\n3. `kbscripts test [Specific files can go here and other args to mocha]`  \n   Runs mocha on all \\*.test.js files in the target project. Tests are run recursively.\n\n## Workspace\n\nThis command allow managing package installation for workspaces.\n\n### Bootstrap\n\nThis allows you to setup all workspaces\n\n- It copies .env.sample \u003e .env\n- It runs npm install for workspaces\n\n**Usage**\n```sh\nkbscript workspace bootstrap\n```\n\n| Option    | Description                                             | Example          |\n| --------- | ------------------------------------------------------- | ---------------- |\n| workspace | This allows you to run a command for a single workspace | -- workspace api |\n\n### NPM Commands\n\nThis workspace commands supports all npm installation commands `install, ci, uninstall and test`\nTo run a command for all workspaces use.\n\n**Usage**\n\n```sh\nkbscript workspace {command} joi\n```\n\nReplace {command} with one of install, test, ci or uninstall\n\n| Option    | Description                                             | Example          |\n| --------- | ------------------------------------------------------- | ---------------- |\n| workspace | This allows you to run a command for a single workspace | -- workspace api |\n\n### Docker-bootsrap\n\nThis allows you to copy a base Dockerfile to all workspaces.\n\n**Usage**\n```sh\nkbscript workspace docker-bootstrap --path {PATH_TO_DOCKER_FILE}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkudobuzz%2Fkbscripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkudobuzz%2Fkbscripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkudobuzz%2Fkbscripts/lists"}