Echo Banner
    Preparing search index...

    Echo Banner

    echo-banner

    Banners made simple

    npm version Downloads codecov

    echo-banner helps you add clean metadata banners to builds and display beautiful ASCII titles in CLI applications.

    npm install echo-banner
    
    import { banner } from 'echo-banner';
    import pkg from './package.json';

    const result = banner({ pkg });

    console.log(result);
    /*!
    * echo-banner v1.0.0
    * Banners made simple
    *
    * (c) 2026 TenE
    * Released under the MIT License
    *
    * https://example.com
    * https://github.com/teneplaysofficial/echo-banner
    */

    Generate a formatted banner string. See the API docs

    banner(options: BannerOptions): string
    

    Prints a stylized ASCII banner for CLI applications. See the API docs

    print(options: PrintOptions): Promise<void>