mhy
  • Introduction
  • Basics
    • Installation
    • Usage
    • UI
    • Ecosystem
    • How does it work?
  • Tools
    • Built-ins
      • boot
      • config
      • dep
      • options
      • ui
    • Processes
      • eslint
      • jest
      • node
      • nodemon
      • prettier
      • standard-version
      • storybook-start
      • storybook-build
      • tsc
      • webpack
      • webpack-bundle-analyzer
      • webpack-dev-server
    • Configs
      • eslint
      • gitignore
      • jest
      • manifest
      • mhy
      • npmignore
      • prettier
      • storybook
      • typescript
      • webpack
  • IDE setup
    • WebStorm & PHPStorm
    • VSCode
  • Recipes and Examples
    • package.json overrides
    • Add your own
  • Others
    • FAQ
    • Help
    • Development of mhy
    • Suggest a library
Powered by GitBook
On this page
  • Usage
  • Available Templates
  • React Minimal
  • React Default

Was this helpful?

  1. Tools
  2. Built-ins

boot

This tool will let you initialize codebase from a template.

Usage

mhy boot [technology:react|vue|...] [template:default|...] [-o,--output: output path]
  • technology: what tech should be used.

    • default: react

  • template: what template should be loaded.

    • default: default

  • -o, --output: path where the template should be boot.

    • default: ''

Examples:

mhy boot react default -o myProject
# or
mhy boot
# or
mhy boot react
# or
mhy boot -o xproject/path/src

Your package.json will be extended with the necessary changes you might need to run the template. If it doesn't exists, it'll be created for you.

Available Templates

React Minimal

A minimal code to render a single React component.

mhy boot react minimal

React Default

A complete example codebase with Redux, async rendering, API calls and Service Worker.

mhy boot react

Structure

  • components: components directory

  • config: app configuration directory

  • core: app mounting, routing and flux store directory

  • entities: HTTP code related directory

  • fields: app specific form fields directory

  • forms: app specific forms and business logic directory

  • layouts: is a container for a page to represent different states of an application

  • overlays: basically containers to construct a overlay's structure.

  • pages: basically containers to construct a page's structure.

  • services: a base service implementation which you build your APIs on.

  • validators: custom validator function usually for react-redux-form

  • index.js: files are being used to export sub-modules for easier/simplier/nicer imports.

PreviousBuilt-insNextconfig

Last updated 3 years ago

Was this helpful?