running au with 'help' or no options results in TypeError
See original GitHub issueI’m submitting a bug report
- Library Version: 0.32.0
Please tell us about your environment:
-
Operating System: Linux (Mint)
-
Node Version: 8.9.4
Current behavior:
Running au
(no options) or au help
results in:
TypeError: Cannot read property 'model' of null
at module.exports.getLocalCommandText (/home/shawn/node_modules/aurelia-cli/lib/commands/help/command.js:42:32)
at ui.displayLogo.then (/home/shawn/node_modules/aurelia-cli/lib/commands/help/command.js:24:21)
at <anonymous>
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:21 (16 by maintainers)
Top Results From Across the Web
TypeError: 'module' object is not callable - Stack Overflow
This is what the error message means: It says module object is not callable , because your code is calling a module object....
Read more >TypeError: Invalid host defined options - Cannot Use ... - GitHub
Hello! I tried reaching out on Gitter, but wasn't able to elicit any help. I am in the process of trying to migrate...
Read more >How to Handle JavaScript Uncaught TypeError: “x” is Not a ...
The Javascript TypeError: "x" is not a function occurs when calling a function on a value or object, which is not actually a...
Read more >TypeError: "x" is not a function - JavaScript - MDN Web Docs
The JavaScript exception "is not a function" occurs when there was an attempt to call a value from a function, but the value...
Read more >Python Type Checking (Guide) - Real Python
1 + "two" # This line never runs, so no TypeError is raised ... else: . ... In bigger projects, type hints help...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@JeroenVinke as a matter of security I generally don’t
npm install
anything with-g
. Rather than use other approaches I just npm install things I use often in my home directory and have~/node_modules/.bin
in my path. Hence no need to write to protected spots on the filesystem nor reconfigure npm to use a different ‘global’ config.Awesome