repogenie
v1.0.4
Published
Repogenie is a Node.js package that automates the creation of a new React project and initializes a Git repository. It supports creating projects using Create React App (CRA) or Next.js and optionally sets up a GitHub repository.
Downloads
8
Readme
Repogenie
Repogenie is a Node.js package that automates the creation of a new React project and initializes a Git repository. It supports creating projects using Create React App (CRA) or Next.js and optionally sets up a GitHub repository.
Features
- Create a new React project using Create React App or Next.js.
- Initialize a Git repository and make the initial commit.
- Optionally create and push to a GitHub repository.
- Support for various Next.js setup options.
Installation
Install the package globally using npm:
npm install -g repogenie
Setting up
Set your github username:
git config --global user.name "your_github_username"
Set your github token:
git config --global user.token "your_github_token"
Starting a new project
Type the following in your CLI after installing the packackage globally
repogenie <project_name>