1.0.2 • Published 4 years ago
coil-react-cli v1.0.2
Coil-React-Cli
A Command line interface for module generation for React Framework -- Coil React
Installation & Usage
$ yarn global add coil-react-cli
or
$ npm install -G coil-react-cliThere are two ways to use this library
1: Add Script to package.json (Recommended)
// Package.json
{
"scripts": {
"module": "coil-react"
}
}Then in your terminal:
$ yarn module your/module
or
$ npm run module your/moduleThe reason why this is recommended is because coil-react-cli will look for the src folder in your current directory, if we set the script in package.json, we can ensure that every time we run yarn module, the path it resolves is always correct.
2: Run the command in terminal
$ coil-react your/module