React: npm command to create a new component?

Viewed 22448

I'm new to React and I want to create a new component by a command.

The command which I want to create will be the same output of the command in Angular 2: "ng generate component Test".

I have search on the internet and there is a reference: https://www.npmjs.com/package/create-reactjs-component.

However, it doesn't work for me. The terminal shows errors:

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

Is there anyone can give me a command to create a component in react?

Thank you in advanced.

3 Answers

With npm install -g create-reactjs-component you install the npm package globally.

After you installed the package globally with the above command you can create a component with create-reactjs-component YourComponentName.

Please read the documentation of the package, it's all described there.

Related