• Function

    createLibraryMetadata

    Creates a metadata object for consumers and documentation examples. Encapsulates library name, version, and optional description for introspection and logging purposes.

    Returns

    Metadata object containing name, version, and optional description

    Example

    const metadata = createLibraryMetadata(
    'my-lambda-service',
    '1.0.0',
    'AWS Lambda boilerplate for serverless applications'
    );

    Author

    Bayu Dwiyan Satria

    Since

    1.0.0

    Parameters

    • name: string

      The name of the library or service

    • version: string

      The semantic version (e.g., '1.0.0', '2.1.3')

    • Optional description: string

      Optional description of the library or service

    Returns LibraryMetadata

Generated using TypeDoc