1.0.0 • Published 4 years ago

cra-template-riant-order-management v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

cra-template-riant

Creating an App

You’ll need to have Node 8.16.0 or Node 10.16.0 or later version on your local development machine (but it’s not required on the server). You can use nvm (macOS/Linux) or nvm-windows to switch Node versions between different projects.

To create a new app, you may choose one of the following methods:

npx

npx create-react-app my-app --template riant
cd my-app
npm start

npm

npm init react-app my-app --template riant
cd my-app
npm start

yarn

yarn create react-app my-app --template riant
cd my-app
npm start

It will create a directory called my-app inside the current folder. Inside that directory, it will generate the initial project structure and install the transitive dependencies:

my-app
├── README.md
├── node_modules
├── package.json
├── jsconfig.json
├── riant.config.js
├── .gitignore
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
└── src
    ├── App.css
    ├── App.js
    ├── App.test.js
    ├── index.css
    ├── index.js
    ├── logo.svg
    └── serviceWorker.js