JSPM

react-app-start

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q29102F
  • License ISC

A React Template.

Package Exports

  • react-app-start
  • react-app-start/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-app-start) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-app-start

This project is a React boilerplate that can be used to kickstart a web application.

The boilerplate provides an optimized architecture for building solid web applications through separation of concerns between the UI and business logic. It contains redux, saga, context, theme, localization, tabs and stack navigation.

Quick start

$ npx react-app-start <ProjectName>

$ cd <ProjectName>

$ yarn start

Directory Structure

root
├── public
└── src
    └── config
    |   ├── ApiConfig
    └── contexts
    └── pages
    └── reducer
    |   ├──actions
    |   ├──reducers
    └── routes
    └── services
    └── storage
    └── store
    └── theme
    |     buttons
    |     colors
    |     fonts
    |     spacing
    └── utils
    └── App.js
        ...
├── .env
├── package.json
...

Preconfigured with

  • Latest react version

  • Redux with persistReducer

  • Theme support

  • Material Ui component

  • Utility for validations and error messages

  • Custom font and font size for maintain typography

  • .env setup

  • Support different env for PRODUCTION and DEVELOPMENT

  • User Authentication flow

  • UI for Login and Dashboard