Developing an npm package and a project that depends on it at the same time
问题 The setup/workflow: Project A relies on a custom npm package in package.json . As engineers work on Project A , they will inevitably be making changes to the custom npm package as well. This is streamlined by having them clone down both the project and custom package repos, then applying npm link . (source: http://justjs.com/posts/npm-link-developing-your-own-npm-modules-without-tears) The question: Assume a developer has now finished making changes to both Project A and the custom npm