UNPKG

weather-cli-starter

Version:

Console interface for getting weather condition

39 lines (34 loc) 865 B
import { homedir } from 'os'; import { join } from 'path'; import { promises } from 'fs'; const filePath = join(homedir(), 'weather-data.json'); const TOKEN_DICTIONARY = { token: 'token', city: 'city' } const saveKeyValue = async (key, value) => { let data = {}; if(await isExist(filePath)) { const file = await promises.readFile(filePath); data = JSON.parse(file); } data[key] = value; await promises.writeFile(filePath, JSON.stringify(data)); } const getKeyValue = async (key) => { if(await isExist(filePath)) { const file = await promises.readFile(filePath); const data = JSON.parse(file); return data[key]; } return undefined; } const isExist = async (path) => { try { await promises.stat(path); return true; } catch(err) { return false; } } export { saveKeyValue, getKeyValue, TOKEN_DICTIONARY };