https://github.com/reaxi/gh-gen
generate apps from any github repository, like an universal create-app 💥
https://github.com/reaxi/gh-gen
hackertoberfest
Last synced: about 2 months ago
JSON representation
generate apps from any github repository, like an universal create-app 💥
- Host: GitHub
- URL: https://github.com/reaxi/gh-gen
- Owner: reaxi
- Created: 2022-02-28T21:46:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-23T01:36:17.000Z (almost 4 years ago)
- Last Synced: 2025-10-08T08:35:21.650Z (10 months ago)
- Topics: hackertoberfest
- Homepage:
- Size: 0 Bytes
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gh-gen
[
](https://npmjs.com/package/gh-gen)

**gen**erate apps from any **g**it**h**ub repository
> like starters, templates and more
> yarn berry support, `-2` or `--berry`
## Usage
```
gh-gen user/repo
```
```
gh-gen user/repo [templates/hello]
```
> like templates/ or examples/ (any folder path)
```
gh-gen user/repo -n name -b branch
```
> use specific branch
### aliases
- aliases: pick user/repo and branch
default aliases:
- `npr`: Andrew-Colman/node-package-rollup
- `next`: Andrew-Colman/next.ts
## options
```ts
argument: '[repo]',
"the repository to generate, please use this signature: 'user/repo' or an known alias"
option: '-p, --path ' // path
option: '-b, --branch ', // 'repository branch'
option: '-n, --name ', // 'project name (as in package.json)'
option: '-v, --version ', // 'project version (as in package.json)'
option: '-a, --author ', // 'project author (as in package.json)'
option: '-p, --path ', // 'project path'
option: '-2, --berry [ide]', // 'start a yarn/berry project' // ide: vscode (will install vscode sdk for berry)
option: '--aliases', // 'list all aliases from gh-gen-alises.json' //standalone option
option: '-d, --debug', // 'enable debug mode'
```