Full system abstraction with filesystem and system service access.
Extends BaseBasicSysAbstraction with platform-specific services:
Used in Node.js and Deno environments where full system access is available. Not suitable for browser or Cloudflare Workers environments.
const sys = new BaseSysAbstraction({ TxtEnDecoder: new TxtEnDecoder(), FileSystem: new NodeFileService(), SystemService: new NodeSystemService()});// Access filesystemconst content = await sys._fileSystem.readFile('/path/to/file');// Access environmentconst env = sys._systemService.getEnv(); Copy
const sys = new BaseSysAbstraction({ TxtEnDecoder: new TxtEnDecoder(), FileSystem: new NodeFileService(), SystemService: new NodeSystemService()});// Access filesystemconst content = await sys._fileSystem.readFile('/path/to/file');// Access environmentconst env = sys._systemService.getEnv();
Readonly
Full system abstraction with filesystem and system service access.
Extends BaseBasicSysAbstraction with platform-specific services:
Used in Node.js and Deno environments where full system access is available. Not suitable for browser or Cloudflare Workers environments.
Example