-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.mjs
executable file
·172 lines (137 loc) · 4.1 KB
/
cli.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#!/usr/bin/env node
import yargs from 'yargs/yargs'
import { hideBin } from 'yargs/helpers'
import serve from './http.mjs'
import path from 'node:path'
import Debug from 'debug'
const debug = Debug('furver:cli')
const noop = () => {}
async function createApi (modules) {
const api = await modules.reduce(async (merged, filePath) => {
merged = await merged
if (filePath.startsWith('.')) { filePath = path.join(process.cwd(), filePath) }
const mod = await import(filePath)
const exported = mod.default || mod
// Assign the default to module name if not already taken
if (mod.default && !exported[filePath]) {
exported[filePath] = mod.default
}
return Object.assign(Object.create(merged), exported)
}, {})
return api
}
function throws (cb) {
try {
cb()
return false
} catch (error) {
return true
}
}
const name = 'furver'
process.title = name
// Debug.enable('*:start,*:error')
const argv = yargs(hideBin(process.argv))
.scriptName(name)
.demandCommand(1, 'You must specify a command')
.env(name.toUpperCase())
.command('server <modules..>', 'start server', noop, async ({ modules, port }) => {
serve(modules, port)
})
.command('repl [modules..]', 'start a local server or client repl', noop, async ({ url, modules }) => {
if (url) {
const { default: repl } = await import('./repl.mjs')
const { default: FurverClient } = await import('./client.mjs')
const api = await FurverClient({ endpoint: url })
Object.keys(api).forEach(key => {
if (!global[key]) global[key] = api[key]
})
repl(async function awaitEval (cmd, context, filename, callback) {
const value = eval(cmd) // eslint-disable-line
if (isPromise(value)) { return callback(null, await value) }
callback(null, await api.call(value))
})
return
}
if (!modules) {
throw new Error('No --url or modules.. defined.\nEither define modules or a --url connection string.')
}
const { default: repl } = await import('./repl.mjs')
const { exec } = await import('./lisp.mjs')
Object.keys(modules).forEach(key => {
if (!global[key]) {
const value = modules[key]
global[key] = value
if (isFunction(value)) { value.toJSON = () => key }
}
})
repl(async function awaitEval (cmd, context, filename, callback) {
const value = eval(cmd) // eslint-disable-line
if (isPromise(value)) { return callback(null, await value) }
callback(null, await exec(modules, value))
})
})
.command({
command: 'client',
describe: 'start client repl. Use repl --url instead',
deprecated: true,
hidden: true,
handler: () => {
// Handle the deprecated subcommand here
console.log('Use the "repl" subcommand')
process.exit(1)
}
})
.command('schema [modules..]', 'print schema of api', noop, async ({ modules, url }) => {
if (modules) {
const { default: schema } = await import('./schema.mjs')
console.log(JSON.stringify(schema(modules)))
return
}
if (!url) {
throw new Error('No --url or modules.. defined.\nEither define modules or a --url connection string.')
}
const { default: FurverClient, schema } = await import('./client.mjs')
const api = await FurverClient({ endpoint: url })
return console.log(JSON.stringify(await schema(api)))
})
.option('url', {
type: 'string',
check (x) {
return !throws(() => new URL(x))
}
})
.option('modules', {
description: 'Name or path to modules',
array: true,
type: 'string',
async coerce (x) {
return x && await createApi(x)
}
})
.option('verbose', {
alias: 'v',
type: 'boolean',
coerce (x) {
if (x) {
Debug.enable(`${name}*`)
}
return x
}
})
.option('port', {
alias: 'p',
type: 'number',
default: process.env.PORT || 3000,
check (x) {
return isNaN(Number(x))
}
})
.parse()
debug('Options', await argv)
function isFunction (x) {
return typeof x === 'function'
}
function isPromise (x) {
return x && isFunction(x.then)
}