微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

我得到 yargs.methodName is not a function with all yargs methods using ES6 import in NodeJS without Babel

如何解决我得到 yargs.methodName is not a function with all yargs methods using ES6 import in NodeJS without Babel

所以,我正在做一个 nodejs 教程,但该教程没有更新到 ES6,我只是想随着我的进展更新代码。我使用 require('yargs') 使程序运行得很好,但是继续获取​​ yargs.command、yargs.argv 等不是一个函数。我的理解是 nodejs 现在支持导入/导出语句,yargs 也是如此。我已将我的应用程序设置为“类型:模块”并保存为 .mjs 文件。下面列出的是具有终端输出的工作与非工作(ES6)。如果有人能发现我的错误,请告诉我...

工作代码...

// ipmort module libraries from node package manager
const yargs = require('yargs')
const notes = require('./notes.js')

// Output colors
const chalk = require('chalk')
let jenkinsColor = '#bd93f9'
let successColor = '#50fa7b'
let failureColor = '#ff5555'

// Yargs stored version number
yargs.version('1.0.0')

// --- ADD COMMAND ----
yargs.command({
  command: 'add',describe: 'Have Jenkins add a new note',builder: {
    title: {
      describe: 'Note title',demandOption: true,type: 'string'
    },body: {
      describe: 'Note content',type: 'string'
    }
  },handler(argv) {
    notes.addNote(argv.title,argv.body)
  }
})

// --- REMOVE COMMAND ----
yargs.command({
  command: 'remove',describe: 'Have Jenkins remove an existing note',builder: {
    title: {
      describe: 'Note to be deleted',handler(argv) {
    notes.removeNote(argv.title)
  } 
})

// --- READ COMMAND ----
yargs.command({
  command: 'read',describe: 'Have Jenkins read your notes',handler() {
    console.log('Reading your notes,sir...')
  }
})

// --- LIST COMMAND ----
yargs.command({
  command: 'list',describe: 'Have Jenkins list your notes',handler() {
   console.log('Removing your note,sir...')
  }
})

yargs.parse()

终端...

node-notes-app$ node app.js add --title="Test Title" --body="testing testing 123"

      ...............................
      + Test Title
      ...............................
      + + testing testing 123
    
SUCCESS
Adding your new note to your list,sir...
christopher@rra-debian-desktop:~/Documents/IBM/FED/NodeJS/node-notes-app$ 

ES6

// import module libraries from node package manager
import yargs from 'yargs'
// import notes from './notes.js'

// Yargs stored version number
yargs.version('1.0.0')

// --- ADD COMMAND ----
yargs.command({
  command: 'add',sir...')
  }
})

yargs.parse()

终端....

app.mjs:12
yargs.version('1.0.0')
      ^

TypeError: yargs.version is not a function
    at file:///home/christopher/Documents/IBM/FED/NodeJS/node-notes-app/app.mjs:12:7
    at ModuleJob.run (internal/modules/esm/module_job.js:152:23)
    at async Loader.import (internal/modules/esm/loader.js:166:24)
    at async Object.loadESM (internal/process/esm_loader.js:68:5)

解决方法

我在 github 上发布了这个问题...here is the solution (https://github.com/yargs/yargs/issues/1854)。

这在 Advanced Topics README.file (https://github.com/yargs/yargs/blob/master/docs/advanced.md)

中有解释

使用 index.mjs 的示例命令层次结构

为了支持在使用 ESM 时创建复杂的嵌套 CLI,方法 .command() 被扩展为接受一系列命令模块。相当 比使用 .commandDir(),在每个命令中创建一个 index.mjs 包含命令列表的目录:

cmds/index.mjs:

import * as a from './init.mjs'; import * as b from './remote.mjs';
export const commands = [a,b];

此索引将被导入并在您的 CLI 中注册:

cli.js:

#!/usr/bin/env 节点

import yargs from 'yargs'; import { hideBin } from 'yargs/helpers';
import { commands } from './cmds/index.mjs';
 
yargs(hideBin(process.argv))
  .command(commands)
  .argv;

这是我重新格式化的工作代码 app.mjs 的一部分

// import module libraries from node package manager
import yargs from 'yargs'
import { hideBin } from 'yargs/helpers'
import notes from './notes.mjs'

const yarg = yargs(hideBin(process.argv))

// Yargs stored version number
yarg.version('1.0.0')

// --- ADD COMMAND ----
yarg.command({
  command: 'add',describe: 'Have Jenkins add a new note',builder: {
    title: {
      describe: 'Note title',demandOption: true,type: 'string'
    },body: {
      describe: 'Note content',type: 'string'
    }
  },handler(argv) {
    notes.addNote(argv.title,argv.body)
  }
})

和终端输出...

~/Projects/IBM/BED/NodeJS/node-notes-app$ node app.mjs --help
app.mjs [command]

Commands:
  app.mjs add     Have Jenkins add a new note
  app.mjs remove  Have Jenkins remove an existing note
  app.mjs read    Have Jenkins read your notes
  app.mjs list    Have Jenkins list your notes

Options:
  --help     Show help                                                 [boolean]
  --version  Show version number                                       [boolean]

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。