We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I had some slightly different reqs, but used some of your code as inspiration for deploying Node apps with Capistrano.
In particular, sharing node_modules seemed like a really great idea.
node_modules
Unfortunately, npm can't (yet) tell when git style dependencies require installation. https://github.com/isaacs/npm/issues/1727
I had to revert to using a new node_modules each time, which is very sloooooow.
Just wanted to give you the heads up that a shared node_modules isn't a general purpose solution... at least not yet.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had some slightly different reqs, but used some of your code as inspiration for deploying Node apps with Capistrano.
In particular, sharing
node_modules
seemed like a really great idea.Unfortunately, npm can't (yet) tell when git style dependencies require installation.
https://github.com/isaacs/npm/issues/1727
I had to revert to using a new
node_modules
each time, which is very sloooooow.Just wanted to give you the heads up that a shared
node_modules
isn't a general purpose solution... at least not yet.The text was updated successfully, but these errors were encountered: