@alvincrespo/hashnode-content-converter - v0.2.2
    Preparing search index...

    Interface FileWriterConfig

    Configuration options for FileWriter service

    interface FileWriterConfig {
        atomicWrites?: boolean;
        encoding?: BufferEncoding;
        overwrite?: boolean;
    }
    Index

    Properties

    atomicWrites?: boolean

    Enable atomic writes (write to temp file, then rename) Prevents partial writes on failure

    true
    
    encoding?: BufferEncoding

    File encoding for markdown files

    'utf8'
    
    overwrite?: boolean

    Whether to overwrite existing files

    false - throw error if file exists