-
-
Notifications
You must be signed in to change notification settings - Fork 7.1k
/
Copy pathindex.js
109 lines (107 loc) · 2.66 KB
/
index.js
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
const yargs = require('yargs')
const run = require('./run')
const pkg = require('../../package.json')
module.exports = function () {
const argv = yargs
.config('config')
.usage('$0 [options] <source>')
.options({
port: {
alias: 'p',
description: 'Set port',
default: 3000,
},
host: {
alias: 'H',
description: 'Set host',
default: 'localhost',
},
watch: {
alias: 'w',
description: 'Watch file(s)',
},
routes: {
alias: 'r',
description: 'Path to routes file',
},
middlewares: {
alias: 'm',
array: true,
description: 'Paths to middleware files',
},
static: {
alias: 's',
description: 'Set static files directory',
},
'read-only': {
alias: 'ro',
description: 'Allow only GET requests',
},
'no-cors': {
alias: 'nc',
description: 'Disable Cross-Origin Resource Sharing',
},
'no-gzip': {
alias: 'ng',
description: 'Disable GZIP Content-Encoding',
},
snapshots: {
alias: 'S',
description: 'Set snapshots directory',
default: '.',
},
delay: {
alias: 'd',
description: 'Add delay to responses (ms)',
},
id: {
alias: 'i',
description: 'Set database id property (e.g. _id)',
default: 'id',
},
foreignKeySuffix: {
alias: 'fks',
description: 'Set foreign key suffix (e.g. _id as in post_id)',
default: 'Id',
},
quiet: {
alias: 'q',
description: 'Suppress log messages from output',
},
config: {
alias: 'c',
description: 'Path to config file',
default: 'json-server.json',
},
_noDbRoute: {
type: 'boolean',
description: 'Do not use the /db route',
default: false,
},
_noDataNext: {
type: 'boolean',
description: 'Enter a middleware when there is no data',
default: false,
},
_noRemoveDependents: {
type: 'boolean',
description: 'Do not clear data without dependencies',
default: false,
},
})
.boolean('watch')
.boolean('read-only')
.boolean('quiet')
.boolean('no-cors')
.boolean('no-gzip')
.help('help')
.alias('help', 'h')
.version(pkg.version)
.alias('version', 'v')
.example('$0 db.json', '')
.example('$0 file.js', '')
.example('$0 http://example.com/db.json', '')
.epilog('https://github.com/typicode/json-server')
.require(1, 'Missing <source> argument').argv
run(argv)
}