DEV Community

AHMED HAFDI
AHMED HAFDI

Posted on

 

You don't seem to have a generator with the name “react-native-ignite:model” installed.

You don't seem to have a generator with the name “react-native-ignite:model” installed.
But help is on the way:

You can see available generators via npm search yeoman-generator or via http://yeoman.io/generators/.
Install them with npm install generator-react-native-ignite.

To see all your installed generators run yo without any arguments. Adding the --help option will also show subgenerators.

If yo cannot find the generator, run yo doctor to troubleshoot your system.

solution :

there are 2 solutions

1)run this command npm install generator-react-native-ignite (or with yarn)
2°if 1 didnt work then you have to follow these steps :
download this folder ( ignite ) ( https://drive.google.com/drive/folders/14thitkLxWl93OJ_z2EndeIcZhAaeBIJ0?usp=sharing)
3)you put the folder on this path "project_ignite/app/"
then install ignite react native genetator : use this command npm install generator-react-native-ignite (or with yarn)
4)now you can generate anything you want ( screens , models ..etc ) ( for example generate a model named hello npx ignite-cli generate model hello)

Top comments (1)

Collapse
 
hafdiahmed profile image
AHMED HAFDI

npm install generator-react-native-ignite (or with yarn)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.