bitgen v0.2.0
BitGen
Cli Utility to quickly start new projects.
Usage
To get started using BitGen just use the following command structure below:
$> npx bitgen [options] <path>Options
-r, --react
Using either of these flags will allow you to create a new React app.
$> npx bitgen -r <path>or
$> npx bitgen --react <path>-s, --svelte
Using either of these flags will allow you to create a new Svelte app.
$> npx bitgen -s <path>or
$> npx bitgen --svelte <path>-v, --vue
Using either of these flags will allow you to create a new Vue app.
$> npx bitgen -v <path>or
$> npx bitgen --vue <path>-a, --api
Using either of these flags will allow you to create a new RESTful API.
$> npx bitgen -a <path>or
$> npx bitgen --api <path>-V, --version
Show the current version of the cli utility
$> npx bitgen -Vor
$> npx bitgen --version-h, --help
Show the help menu
$> npx bitgen -hor
$> npx bitgen --helpPath
This is the path the cli utility will output to. You can use either a relative path like so:
./exampleor you can use an absolute path:
C:\Users\<username>\Desktop\exampleYou can also just provide a name and the cli utility will output a new folder with that name to the directory where you ran the command from.
example:
~/Development> npx bitgen -r new-react-appThis will create a new project called new-react-app in the Development directory.