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
pub mod cli;
pub mod error;
pub mod generator;

// Re-export commonly used types
pub use cli::Cli;
pub use error::{BunCliError, Result};
pub use generator::{ProjectConfig, ProjectGenerator};