admin管理员组文章数量:1341856
Normally you yarn/npm install react
, then use it with import React from 'react'
Say you want to debug a React source and you clone a GitHub repo.
How do you use the source in your project instead of the lib version?
- edit
To further develop philipheinser's answer, here's what I encountered with doing npm link draft-js-mention-plugin
npm link
seems to run npm run build
which is the scripts
mand in the package.json
that you want to link.
with draft-js-mention-plugin
, npm run build runs ../node_modules/.bin/rimraf lib
and I had to go up a directory and run npm install
to install the rimraf
draft-js-mention-plugin
has parent draft-js-plugins
and it has its own package.json
Normally you yarn/npm install react
, then use it with import React from 'react'
Say you want to debug a React source and you clone a GitHub repo.
How do you use the source in your project instead of the lib version?
- edit
To further develop philipheinser's answer, here's what I encountered with doing npm link draft-js-mention-plugin
npm link
seems to run npm run build
which is the scripts
mand in the package.json
that you want to link.
with draft-js-mention-plugin
, npm run build runs ../node_modules/.bin/rimraf lib
and I had to go up a directory and run npm install
to install the rimraf
draft-js-mention-plugin
has parent draft-js-plugins
and it has its own package.json
2 Answers
Reset to default 4You can use npm link
your version of the code: https://docs.npmjs./cli/link.html
If you want to mimic a more production like situation you might use this workflow:
Create a package of your submodule locally:
cd /path/to/your/module
npm pack
This will create a .tgz file of your package in /path/to/your/module
Install the local package of the submodule in your application:
cd /path/to/your/application
npm install /path/to/your/module/<YourModule>-<YourModulesVersion>.tgz
This will install the .tgz file in your application's node_modules directory
These steps should be repeated after adjustments to your module.
本文标签: javascriptHow to debug npm modulesStack Overflow
版权声明:本文标题:javascript - How to debug npm modules? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743687187a2522090.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论