create-nr
v0.1.0
Published
A CLI tool to create a node js app
Readme
Create Node App CLI
The Create Node App CLI is a tool to quickly scaffold a Node.js project from a boilerplate template. It allows you to specify the project name and release.
Features
- Create a Node.js app with some boilerplate code.
Usage
Run the CLI with the following command:
npx create-nr <project-name>@<release>Parameters
<project-name>: The name of your project. This will also be the name of the directory created.<release>(optional): The release version of the template to use. Defaults tomainif not specified.
Example
Create a project named
my-node-app:npx create-nr my-node-appFollow the prompts to select your preferred package manager and complete the setup.
Post-Setup
After the CLI finishes, navigate to your project directory and install dependencies:
cd <project-name>
npm install
npm run dev