1.0.1 • Published 3 years ago
generator-agen v1.0.1
agen
a simple generator mostly for bootstrapping react and express apps
Installation
NPM
npm i -g yo generator-agen
Yarn
yarn global add yo generator-agen
Usage
yo agen
And that's basically it!
Templates
- React (Parcel)
. ├── src │ ├── components │ │ └── App.tsx │ ├─── state │ │ └── index.ts │ ├── index.html │ ├── index.tsx │ └── parcel.d.ts ├── .env ├── .env.example ├── tsconfig.json └── package.json
- Express
. ├── src │ ├── app.ts ├── typings │ └── environment.d.ts ├── .env ├── .env.example ├── tsconfig.json └── package.json
- Simple node app
. ├── src │ └── index.jss └── package.json