A tool for generating minimal setup React apps.
npm install @scriptless/tinyapp

A tool for generating minimal setup React apps.
Install with npm install @scriptless/tinyapp.
``bashBuild once and walk away
$ tinyapp
---
It's recommended that you tie these scripts to npm setup, especially if you need to add some custom configuration. For example:
`json
// package.json
...
"scripts" {
"build": "tinyapp --from='./source/index.js' --to='./dist/'",
"start": "tinyapp --from='./source/index.js' --develop"
}
...
`Note that while tinyapp does take care of all the bundling tools, you'll want to include
react and react-dom yourself.$3
Run in a project with tinyapp installed by simply running
tinyapp.| Option | Default | Type | Description |
| ------- | --------------- | -------- | -------------------------------------------------------------------- |
| from | Try to find src | {string} | Path your entrypoint. |
| to | 'build' | {string} | Directory to write your app to. |
| develop |
false | {bool} | Set to true` to run your app with reloading and all that fun stuff. |