在Node.js中使用导入时,Yargs不起作用

时间:2019-10-07 15:40:24

标签: node.js typescript yargs

我是Node.js的新手,现在正在学习一些基础知识。我试图稍后使用一些打字稿代码转换为.js代码。

我写了这个简单的代码进行测试

    import * as fs from 'fs'


    const argv = require('yargs')
                .alias('f', 'filename')
                .alias('c', 'content')
                .demandOption('filename')
                .demandOption('content')
                .argv

    fs.writeFile(argv.filename, argv.content, (error)=>{
        if(error) 
            throw error
        console.log(`File ${argv.filename} saved.`)
    })

这很好用。但是,当我将行 require('yargs')更改为导入时,如下所示:

   import * as fs from 'fs'
   import * as yargs from 'yargs'

    const argv = yargs
                .alias('f', 'filename')
                .alias('c', 'content')
                .demandOption('filename')
                .demandOption('content')
                .argv

    fs.writeFile(argv.filename, argv.content, (error)=>{
        if(error) 
            throw error
        console.log(`File ${argv.filename} saved.`)
    })

我收到此错误:

Argument of type 'unknown' is not assignable to parameter of type 'string | number | Buffer | URL'.

Type '{}' is missing the following properties from type 'URL': hash, host, hostname, href, and 9 more.ts(2345)

有人知道导致此错误的模块/导入有什么区别吗?对于fs库,在此示例中,两种方法都可以正常工作。

3 个答案:

答案 0 :(得分:0)

您需要从argv设置args的类型。尝试将您的核心更改为:

const argv = yargs
        .option('filename', {
            alias: 'f',
            demandOption: true,
            describe: 'Nome do arquivo',
            type: 'string'
        })
        .option('content', {
            alias: 'c',
            demandOption: true,
            describe: 'Conteudo',
            type: 'string'
        })
        .argv

答案 1 :(得分:0)

我认为符合 ES6 的导入仍然不受支持,只需要工作。

import yargs from 'yargs'
console.log(yargs.argv)

$ node app.js
undefined

答案 2 :(得分:0)

您是否尝试过通过运行以下命令来安装 yargs 类型?

npm install --save @types/yargs