npm发布react包遇到的问题

Failed PUT 403
Package name too similar to existing packages;
// 包名与现有包太相似,导致发布失败,修改包名再发布

Failed PUT 402
npm ERR! You must sign up for private packages
// 自己在npm申请了一个免费Organization,当你初次发包时候会出现这个报错
// 运行npm publish --access=public就可以搞定

 Error: EPERM: operation not permitted, unlink 。。。。。
 // 大多数因为npm的registry地址不是https://registry.npmjs.org/
 // npm config set registry https://registry.npmjs.org/

Uncaught Error: Element ref was specified as a string (editor) but no owner was set. You may have multiple copies of React loaded. (details: https: //fb. me/react-refs-must-have-owner)
// 发布的包使用时候报这个错误,需要把组件中元素 ref="eleRef" 进行修改,分两步
// 1. constructor中 this.eleRef = React.createRef();
// 2. 组件中元素 ref={this.eleRef}
// 使用时候 this.eleRef.current 才是DOM元素

使用发布的包没有样式
// 一般发布的组件在使用时候,需要单独引入样式文件,如果你发布的包中没有,你需要修改
// package.json中配置 "files": ["lib"], 这样把包含打包后样式的文件夹(lib)配置好

你可能感兴趣的:(npm,react)