@medly/create-app
v0.8.3
Published
An application for generating react app
Downloads
9
Readme
🖥️ Create Web Applications
A kit to generate simple react applications.
Getting started
| Package Manager | Command |
| --------------- | ------------------------ |
| NPM | npm init @medly/app
|
| Yarn | yarn create @medly/app
|
| PNPM | pnpx @medly/create-app
|
Follow the prompts or run command yarn create @medly/app <project-name> [options]
with the below options.
Options
| Flags | Description | Choices | Default |
| ----------------------------------------- | ------------------------------ | ------------------------- | ------- |
| -V, --version
| output the version number | | |
| -p, --package-manager <package-manager>
| package manager | npm
, yarn
, pnpm
| yarn
|
| -s, --state-manager <state-manager>
| state manager | redux
, context
,none
| redux
|
| -i, --interactive
| show interactive questionnaire | | |
| -h, --help
| display help for command | | |
Features
The following features are set up by this kit:
babel
totranspile
the code.jest
to writeunit tests
.webpack
tobundle
the code.prettier
to automaticallyformat
the code.eslint
to catch the error.@medly-components
with theme.redux
to store the app state.- Basic
PageLayout
withHeader
,SideNav
&PageContent
component.