jin-app
Version:
A CLI app for taking simple notes without ever leaving the terminal.
15 lines (12 loc) • 351 B
JavaScript
const path = require('path')
const os = require('os')
const fileName = 'jin.json'
const dataPath =
process.env.NODE_ENV === 'test'
? path.resolve(__dirname, '__tests__', 'test.json')
: path.resolve(os.homedir(), fileName)
const exportPath = path.resolve(process.cwd(), fileName)
module.exports = {
dataPath,
exportPath
}