{"id":22310288,"url":"https://github.com/InfinityBotList/node-sdk","last_synced_at":"2025-07-29T07:32:51.371Z","repository":{"id":189430991,"uuid":"680666628","full_name":"InfinityBotList/node-sdk","owner":"InfinityBotList","description":"The official node sdk for interacting with all of our services and modules.","archived":false,"fork":false,"pushed_at":"2023-09-05T01:58:52.000Z","size":3313,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-03T04:41:45.833Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://infinitybotlist.github.io/node-sdk/","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/InfinityBotList.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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":{"github":"InfinityBotList","patreon":"infinitybots","custom":"infinitybots.gg"}},"created_at":"2023-08-20T02:03:03.000Z","updated_at":"2023-09-11T13:28:30.000Z","dependencies_parsed_at":"2024-10-19T04:21:33.618Z","dependency_job_id":null,"html_url":"https://github.com/InfinityBotList/node-sdk","commit_stats":{"total_commits":77,"total_committers":1,"mean_commits":77.0,"dds":0.0,"last_synced_commit":"9ac1d2cf37a91ede82b7e19d03643e290e446b2b"},"previous_names":["infinitybotlist/infinitybots","infinitybotlist/node-sdk"],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/InfinityBotList/node-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InfinityBotList%2Fnode-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InfinityBotList%2Fnode-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InfinityBotList%2Fnode-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InfinityBotList%2Fnode-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/InfinityBotList","download_url":"https://codeload.github.com/InfinityBotList/node-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InfinityBotList%2Fnode-sdk/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267646048,"owners_count":24120928,"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-07-29T02:00:12.549Z","response_time":2574,"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":"2024-12-03T21:01:12.725Z","updated_at":"2025-07-29T07:32:51.364Z","avatar_url":"https://github.com/InfinityBotList.png","language":"TypeScript","funding_links":["https://github.com/sponsors/InfinityBotList","https://patreon.com/infinitybots","infinitybots.gg"],"categories":["TypeScript"],"sub_categories":[],"readme":"# @infinitybots\nThe official node sdk for interacting with all of our services and modules.\n\n[![CodeQL](https://github.com/InfinityBotList/node-sdk/actions/workflows/codeql.yml/badge.svg)](https://github.com/InfinityBotList/node-sdk/actions/workflows/codeql.yml)\n\n---\n\n## Packages\n- [infinitylist/sdk](./packages/sdk/README.md)\n- [infinitylist/client](./packages/client/README.md)\n- [infinitylist/emitter](./packages/emitter/README.md)\n- [infinitylist/logger](./packages/logger/README.md)\n- [infinitylist/ipm](./packages/ipm/README.md)\n\n---\n\n## Contributing\nContributing to our package may be intimidating but its actually quite simple\nthere is just a few commands you need to remember and you will be on your way!\n\n\u003e NOTE: the package cannot be published by anyone who does not have access to our npm org.\n\n### Commands\n- `npm run install` - install dependencies for all packages\n- `npm run build` - build all packages\n-  `npm run create` - create a new sub package\n- `npm run docs:gen` - Generate the packages typedocs\n- `npm run test` - Run tests on all packages to make sure things are working\n- `npm run validate` - Check for valid formatting\n- `npm run publish` - Publish package(s) to npm and update versions\n- `npm run patch` - Publish package(s) under pre-release versions\n    - [versioning info](https://i.stack.imgur.com/fnalf.png)\n\n## Versioning\nSemantic versioning (often abbreviated as “semver”) is a convention used for software versioning in a standardized way. Using semantic versioning, each version number is comprised of three parts: major, minor, and patch, which are incremented when:\n- `major version: there are significant changes`\n- `minor version: a new feature is added in a backward-compatible way`\n- `patch version: bugs or issues are fixed`\n\nHere, semantic versioning is used to allow the manual selection of version numbers. However, Lerna also provides the option to automate the semantic version bump using conventional commits. Conventional commits is a formatting convention that provides a set of rules to formulate a consistent commit message. It specifies that each commit message should consist of a header, which includes a type, an optional scope and a description, an optional body, and a footer. Below is an example message with a description and breaking change footer:\n\n```shell\nfeat: allow provided config object to extend other configs\nBREAKING CHANGE: `extends` key in config file is now used for extending other config files\n```\n\nWith lerna we can detect which package has been changed, infer the automatic semantic version bump if the commit message types fall into one of the following:\n- `When the message type is fix, the patch version will be incremented (ie: 0.0.X)`\n- `When the message type is feat, the minor version will be incremented (ie: 0.X.0)`\n- `When a footer type is BREAKING CHANGE or ! after the type CHANGE, the major version will be incremented (ie: X.0.0)`\n\nIn addition to the auto version increment, Lerna will also create tags and generate change logs to reflect all changes made in that version.\n\n### Other things to note\n- All sub packages should respect our base `tsconfig.json` achieving this is pretty simple you can see an example of how to achieve this [here](./packages/client/tsconfig.json)\n- All sub packages when initially created should have a version of `0.0.0` running commit with fix will push the patch version (ie: `git commit -m \"fix(add): stuff and things\"`)\n- Documentation does not house anything majorly useful like examples but it does offer documentation for all of our constructors, clients, functions, typings and interfaces\n\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FInfinityBotList%2Fnode-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FInfinityBotList%2Fnode-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FInfinityBotList%2Fnode-sdk/lists"}