所以,我正在做一个 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',
demandOption: true,
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',
demandOption: true,
type: 'string'
}
},
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',
describe: 'Have Jenkins add a new note',
builder: {
title: {
describe: 'Note title',
demandOption: true,
type: 'string'
},
body: {
describe: 'Note content',
demandOption: true,
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',
demandOption: true,
type: 'string'
}
},
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()
终端....
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)