-
Notifications
You must be signed in to change notification settings - Fork 357
npm module installation doesn't install any module #244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
There are several issues at play here...
|
Also mind trying a simple experiment? Create an app.js file with the following contents, set it as the startup file, and start debugging. Do you get a similar error? var brain = require('brain');
console.log(brain) If you do get an error... can you check wheter it works when you run |
Update : Noticing something odd :
2.Tried the module installation at home, same steps - I get full Intellisense,no intellisense on the machine I'm currently on. Perhaps could be linked to me using Windows7 on the machine that I get the error? |
I'm not clear from the above - so is this completely gone with a reinstall? Or are you still seeing it on one machine? (Or is that a different issue?) |
After reinstalling the issue was gone. |
Doesn't seem like much more action to take at this point then. Maybe a corrupt install? Let us know if it happens again and we'll reopen and investigate. Thanks! |
Not sure if it's completely the same error but I'm experiencing something similar to #132 :
For a few days I have been trying to get this to work and it's quite possible I'm mising something important.
Here's what's going on :
I'm trying to get the node.js for visual studio extension to recognize my npm modules. Here's what I currenly have :
I have the brain library installed using the built-in npm modules installer inside Visual Studio 2013. The npm module installer comes from the Node.js tools for Visual studio. Whenever I go over the require('brain') it says that it cannot find external module 'brain'.
The problem is whenever I run the application I get the following error :
Running the
.npm install brain
command inside the Node.js Immediate window installs the package but the package is marked as non listed in packages.json and is still unusable.Sorry if I'm missing something and my question is not reasonable.
Have a great day!
The text was updated successfully, but these errors were encountered: