@delight-rpc/child-process
v0.7.5
Published
```sh npm install --save @delight-rpc/child-process # or yarn add @delight-rpc/child-process ```
Readme
@delight-rpc/child-process
Install
npm install --save @delight-rpc/child-process
# or
yarn add @delight-rpc/child-processUsage
Main as Client, ChildProcess as Server
// api.d.ts
interface IAPI {
echo(message: string): string
}
// child-process.ts
import { createServer } from '@delight-rpc/child-process'
const api: IAPI = {
echo(message: string): string {
return message
}
}
createServer(api, process)
// main.ts
import { fork } from 'child_process'
import { createClient } from '@delight-rpc/child-process'
const childProcess = fork('./child-process.js', { serialization: 'advanced' })
const [client] = createClient<IAPI>(childProcess)
await client.echo('hello world')ChildProcess as Client, Main as Server
// api.d.ts
interface IAPI {
echo(message: string): string
}
// main.ts
import { fork } from 'child_process'
import { createServer } from '@delight-rpc/child-process'
const api: IAPI = {
echo(message: string): string {
return message
}
}
const childProcess = fork('./child-process.js', { serialization: 'advanced' })
createServer(api, childProcess)
// child-process.ts
import { createClient } from '@delight-rpc/child-process'
const [client] = createClient<IAPI>(process)
await client.echo('hello world')API
createClient
function createClient<IAPI extends object>(
process: ChildProcess | NodeJS.Process
, options?: {
parameterValidators?: DelightRPC.ParameterValidators<IAPI>
expectedVersion?: string
channel?: string
timeout?: number
}
): [client: DelightRPC.ClientProxy<IAPI>, close: () => void]createBatchClient
function createBatchClient<DataType>(
process: ChildProcess | NodeJS.Process
, options?: {
expectedVersion?: string
channel?: string
timeout?: number
}
): [client: DelightRPC.BatchClient<DataType>, close: () => void]createServer
function createServer<IAPI extends object>(
api: DelightRPC.ImplementationOf<IAPI>
, process: ChildProcess | NodeJS.Process
, options?: {
parameterValidators?: DelightRPC.ParameterValidators<IAPI>
version?: `${number}.${number}.${number}`
channel?: string | RegExp | AnyChannel
ownPropsOnly?: boolean
}
): () => void