1.0.3 • Published 5 years ago

henri-create-app v1.0.3

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

Henri Create App PRs

Creates a React application using the command line. A custum project structure by Henri.


Quick Overview

  yarn global add henri-create-app
  henri-create-app myApp
  cd myApp
  yarn install
  yarn start

Then open http://localhost:3000 to see your app.


License

Henri Create App is open source software licensed as MIT.


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

├── _gitignore
├── config
│   └── config.js
├── package.json
├── public
│   ├── favicon.ico
│   └── index.html
├── readme.md
├── src
│   ├── assets
│   │   └── avatar.png
│   ├── components
│   │   └── SpinCircle
│   │       ├── index.css
│   │       └── index.js
│   ├── datas
│   │   └── data.json
│   ├── index.js
│   ├── layouts
│   │   ├── VerticaLayout
│   │   │   ├── Footer.js
│   │   │   ├── Header.js
│   │   │   └── index.js
│   │   ├── index.css
│   │   └── index.js
│   ├── models
│   │   └── root.js
│   ├── pages
│   │   ├── Home
│   │   │   ├── index.css
│   │   │   └── index.js
│   │   └── NotFound
│   │       └── index.js
│   ├── routers
│   │   └── index.js
│   ├── services
│   │   └── root.js
│   └── utils
│       └── util.js
└── webpack.config.js
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago