我是 React 的新手,我想通过命令创建一个新组件。
我要创建的命令将与 Angular 2 中的命令输出相同:“ng generate component Test”。
我在互联网上搜索过,有一个参考:https : //www.npmjs.com/package/create-reactjs-component。
但是,它对我不起作用。终端显示错误:
PS C:\Users\anhtranv1\Desktop\react-app> npm install -g create-reactjs-component Test
npm ERR! code E404
npm ERR! 404 Not Found: Test@latest
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\anhtranv1\AppData\Roaming\npm-cache\_logs\2018-10-
29T10_39_16_863Z-debug.log
有没有人可以给我一个命令来创建一个react组件?
先谢谢了。