0.2.0 • Published 2 years ago

bitgen v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

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 -V

or

$> npx bitgen --version

-h, --help

Show the help menu

$> npx bitgen -h

or

$> npx bitgen --help

Path

This is the path the cli utility will output to. You can use either a relative path like so:

./example

or you can use an absolute path:

C:\Users\<username>\Desktop\example

You 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-app

This will create a new project called new-react-app in the Development directory.

0.2.0

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago