Frontmatter
| id | 604 |
| title | build programs: simplify the use of commander |
| state | Closed |
| labels | enhancement |
| assignees | tobiu |
| createdAt | May 23, 2020, 3:18 PM |
| updatedAt | May 23, 2020, 3:32 PM |
| githubUrl | https://github.com/neomjs/neo/issues/604 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | May 23, 2020, 3:32 PM |
current:
commander = require('commander') //... const program = new commander.Command(programName)new:
{ program } = require('commander') //... program .name(programName)