Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/lume/core.ts>FS

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
class FS
Re-export
import { FS } from "https://deno.land/x/lume@v1.17.3/core.ts";

Virtual file system used to load and cache files (local and remote)

Constructors

new
FS(options: Options)

Properties

entries: Map<string, Entry>
options: Options
remoteFiles: Map<string, string>
tree: Entry

Methods

addEntry(data: { path: string; type?: EntryType; src?: string; }): Entry
removeEntry(path: string)
update(path: string): Entry | undefined