node-project-gen 0.0.4

⚡ Blazing fast, architecture-aware Node.js backend generator. Scaffold production-ready projects in under 1 second.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod cli;
mod generator;
mod templates;
mod utils;

use cli::Cli;
use clap::Parser;

fn main() {
    let cli = Cli::parse();

    if let Err(e) = cli::handle_command(cli) {
        utils::printer::print_error(&format!("Error: {}", e));
        std::process::exit(1);
    }
}