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

x/pup/lib/common/ipc.ts>FileIPC#sendData

Universal process manager built in Deno
Go to Latest
method FileIPC.prototype.sendData
import { FileIPC } from "https://deno.land/x/pup@1.0.0-rc.10/lib/common/ipc.ts";

Send data using the file-based IPC.

Will append to file in this.filePath if it exists, otherwise create a new one

Parameters

data: string
  • Data to be sent.

Returns

Promise<void>