Home / Function/ writeToDisk() — supabase Function Reference

writeToDisk() — supabase Function Reference

Architecture documentation for the writeToDisk() function in helpers.ts from the supabase codebase.

Entity Profile

Dependency Diagram

graph TD
  f39b2b6c_7375_59c7_6b63_addaa94ee4b5["writeToDisk()"]
  797c645c_8063_cca7_a388_c741cda42c70["gen()"]
  797c645c_8063_cca7_a388_c741cda42c70 -->|calls| f39b2b6c_7375_59c7_6b63_addaa94ee4b5
  style f39b2b6c_7375_59c7_6b63_addaa94ee4b5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/docs/generator/legacy/lib/helpers.ts lines 47–54

export const writeToDisk = (fileName: string, content: any) => {
  return new Promise((resolve, reject) => {
    fs.writeFile(fileName, content, (err: Error) => {
      if (err) return reject(err)
      else return resolve(true)
    })
  })
}

Subdomains

Called By

Frequently Asked Questions

What does writeToDisk() do?
writeToDisk() is a function in the supabase codebase.
What calls writeToDisk()?
writeToDisk() is called by 1 function(s): gen.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free