UNPKG

monex

Version:

Execute one or multiple scripts, interactively or in daemon mode, and restart them whenever they crash or a watched file changes.

16 lines (9 loc) 248 B
/* IMPORT */ import {createHttpClient} from 'picorpc'; import type Procedures from '~/daemon/procedures'; /* MAIN */ const client = createHttpClient<typeof Procedures> ({ url: 'http://localhost:8163' }); /* EXPORT */ export default client;