{"id":30053863,"url":"https://github.com/dhruwlalan/quickrepo","last_synced_at":"2025-08-07T20:00:11.536Z","repository":{"id":52491129,"uuid":"337636174","full_name":"dhruwlalan/quickrepo","owner":"dhruwlalan","description":"A simple command to quickly create a github repository. ","archived":false,"fork":false,"pushed_at":"2022-06-03T15:23:07.000Z","size":215,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-06T23:37:35.364Z","etag":null,"topics":["git","github","node-cli","repository"],"latest_commit_sha":null,"homepage":"http://npm.im/@dhruwlalan/quickrepo","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/dhruwlalan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-02-10T06:21:57.000Z","updated_at":"2023-06-25T17:44:42.000Z","dependencies_parsed_at":"2022-09-12T23:01:35.242Z","dependency_job_id":null,"html_url":"https://github.com/dhruwlalan/quickrepo","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/dhruwlalan/quickrepo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruwlalan%2Fquickrepo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruwlalan%2Fquickrepo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruwlalan%2Fquickrepo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruwlalan%2Fquickrepo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dhruwlalan","download_url":"https://codeload.github.com/dhruwlalan/quickrepo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruwlalan%2Fquickrepo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269316925,"owners_count":24396834,"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-08-07T02:00:09.698Z","response_time":73,"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":["git","github","node-cli","repository"],"created_at":"2025-08-07T20:00:10.552Z","updated_at":"2025-08-07T20:00:11.490Z","avatar_url":"https://github.com/dhruwlalan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# quickrepo\n\n\u003e A single command to quickly create a repository locally \u0026 also host it on github.\n\n[![NPM](https://img.shields.io/npm/l/@dhruwlalan/quickrepo)](https://github.com/dhruwlalan/quickrepo/blob/master/LICENSE) [![npm](https://img.shields.io/npm/v/@dhruwlalan/quickrepo)](https://www.npmjs.com/package/quickrepo) [![npm](https://img.shields.io/npm/dt/@dhruwlalan/quickrepo)](https://www.npmjs.com/package/quickrepo)\n\n## Why?\n\nCreating repository and hosting it on Github feels quite repetitive \u0026 contains quite a few steps _(initializing local repo → create new repo on Github → add remote → push to Github)_ if you are someone who creates a lot of repositories _(in this way)_.\u003cbr\u003e\n\nWith `quickrepo` all you have to do is just run the command `$ qr init`, enter remote repository details and **DONE**.\u003cbr\u003e\n\n`quickrepo` will create the local repository _(if it is already not a git repository or else it will just host it)_ , create the remote repository, add the remote, push to Github. _(It will also set the local branch to track the remote branch i.e up-stream branch)_ .\n\n## Installation\n\n```\n$ npm install -g @dhruwlalan/quickrepo\n```\n\n## Prerequisites\n\n-  Make sure you have [node](https://nodejs.org/en/) and [git](https://git-scm.com/) installed.\n-  You will also need to generate a github [personal access token](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token#creating-a-token) with the scope of `repo` checked. The generated token will be required when setting up your app so store it somewhere temporarily or copy it into the clipboard.\n\n## Usage\n\n**First**, run the below command to setup the app by providing the github personal access token that you generated and copied.\u003cbr\u003e\nYou will get the input prompt for pasting in the personal access token.\n\n```bash\n$  qr setup\n```\n\n\u003e you only need to run the setup once **_or_** if the stored token becomes invalid **_or_** if you purposely want to override the stored token with a new token.\n\n**Second**, run the below command inside any directory you wish to make it a git repository \u0026 also host it onto github.\n\n```bash\n$  qr init\n```\n\n\u003e This command will automatically set up your local repository's remote (with the name origin) linked with the created host repository on github so you need not have to worry about it!\n\n## Available Commands\n\n| command     | description                                                   |\n| ----------- | ------------------------------------------------------------- |\n| `qr setup`  | To setup the app by providing github's personal access token. |\n| `qr verify` | To verify the stored token if its valid or invalid.           |\n| `qr init`   | To create a repository locally \u0026 host it onto github.         |\n\n## License\n\n[MIT](https://github.com/dhruwlalan/quick-repository/blob/master/LICENSE) © 2021 [dhruw lalan](https://github.com/dhruwlalan)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhruwlalan%2Fquickrepo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdhruwlalan%2Fquickrepo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhruwlalan%2Fquickrepo/lists"}