vas
Version:
simple composable data services using muxrpc
53 lines (44 loc) • 1.37 kB
JavaScript
const Url = require('url')
const muxrpcli = require('muxrpcli')
const defined = require('defined')
const listen = require('./listen')
const connect = require('./connect')
module.exports = command
function command (services, config, options, argv) {
options = defined(options, {})
argv = defined(argv, process.argv)
const args = argv.slice(2)
if (args[0] === 'server') {
// special server command:
// start the server
options.onListen = onListen
return listen(services, config, options)
} else {
// normal command:
// create a client connection to the server
options.onConnect = onConnect
var client = connect(services, config, options)
return client
}
function onListen (err) {
if (err) throw err
const url = (typeof options.url === 'string'
? options.url
: Url.format(options.url)
) || `ws://localhost:${options.port}`
console.log(`server listening at ${url}`)
}
function onConnect (err, ws) {
if (err) {
if (err.code === 'ECONNREFUSED') {
console.log(`Error: Could not connect to the server at ${err.target.url}.`)
console.log('Use the "server" command to start it.')
if (options.verbose) throw err
process.exit(1)
}
throw err
}
// run commandline flow
muxrpcli(args, client.manifest, client, options.verbose)
}
}