UNPKG

node-desleri-by105

Version:

du bir deneme sürümüdür. 22222

49 lines (28 loc) 844 B
const yargs = require("yargs"); const capitalWeather = require("./capital_weather"); function calistir() { yargs.version("0.0.1"); yargs.command({ command: "add", description: "bu hangi ülkeninin başketinin havadurumna bakmak istediğinizi gösterir", builder: { country: { describe: "gosterilicek ulke", demandOption: true, type: "string" } }, handler(argv) { capitalWeather(argv.country) // .toString() } }) yargs.parse(); } module.exports = calistir; // yargs.argv yi yazdırırı // unutmuşum 2 günde ne kadar acı verici /* capitalWeather("Turkey"); capitalWeather("france"); capitalWeather("germany"); */