bun-cli 0.3.2

Bun CLI Generator is a command-line tool built in Rust, designed to streamline the process of setting up new Bun projects. With a simple command, users can generate a basic Bun project structure, including necessary configuration files and a ready-to-go project setup, saving time and setting a standard structure for Bun applications.
Documentation
1
2
3
4
5
6
7
8
9
use bun_cli::Cli;
use std::process;

fn main() {
    if let Err(e) = Cli::run() {
        Cli::display_error(&e);
        process::exit(1);
    }
}