mirror of
https://github.com/typicode/json-server.git
synced 2025-07-29 21:23:41 +08:00
Fix
This commit is contained in:
@ -18,20 +18,20 @@ function prettyPrint(argv, object, rules) {
|
||||
console.log()
|
||||
console.log(chalk.bold(' Resources'))
|
||||
for (let prop in object) {
|
||||
console.log(' ' + root + '/' + prop)
|
||||
console.log(` ${root}/${prop}`)
|
||||
}
|
||||
|
||||
if (rules) {
|
||||
console.log()
|
||||
console.log(chalk.bold(' Other routes'))
|
||||
for (var rule in rules) {
|
||||
console.log(' ' + rule + ' -> ' + rules[rule])
|
||||
console.log(` ${rule} -> ${rules[rule]}`)
|
||||
}
|
||||
}
|
||||
|
||||
console.log()
|
||||
console.log(chalk.bold(' Home'))
|
||||
console.log(' ' + root)
|
||||
console.log(` ${root}`)
|
||||
console.log()
|
||||
}
|
||||
|
||||
@ -172,7 +172,7 @@ module.exports = function(argv) {
|
||||
process.stdin.setEncoding('utf8')
|
||||
process.stdin.on('data', chunk => {
|
||||
if (chunk.trim().toLowerCase() === 's') {
|
||||
const filename = 'db-' + Date.now() + '.json'
|
||||
const filename = `db-${Date.now()}.json`
|
||||
const file = path.join(argv.snapshots, filename)
|
||||
const state = app.db.getState()
|
||||
fs.writeFileSync(file, JSON.stringify(state, null, 2), 'utf-8')
|
||||
|
@ -36,6 +36,6 @@ module.exports = function(source, cb) {
|
||||
const data = low(source, { storage: fileAsync }).getState()
|
||||
cb(null, data)
|
||||
} else {
|
||||
throw new Error('Unsupported source ' + source)
|
||||
throw new Error(`Unsupported source ${source}`)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user