Description
Is your proposal related to a problem?
No, I created a project that writes basic CRUD components for new React projects and I want to see if there's any interest in moving these features into a module or directly into create-react-app
Here is my project that I would be willing to bring into some kind of module accessible from create-react-app
. Sorry if this seems like advertising, I think the README will help explain some of the features.
I made a project that allows a user to use one command to create components to manage CRUD resources. It creates presentation pages, forms, and logic for managing the user-defined models.
react-scaffold-generate generate Inventory \
name:string \
description:string:textarea \
isSold:boolean \
seller:string:email
Here's the project for more info:
https://github.com/DrewWeth/react-scaffold-generate
Here's a live demo of what the one-command adds to the standard create-react-app
http://rsg.drewweth.com/
Describe the solution you'd like
Im frustrated when I have to bootstrap CRUD (create, read, update, delete) interfaces on a new app.
I would like to rewrite and export the functionality from my project into a module accessible via create-react-app
Describe alternatives you've considered
I've looked for projects with similar features, but can't find one. This is based on Ruby on Rails's scaffolding project which I think is so powerful and isn't equally duplicated anywhere for React.
Additional context
I'm just seeing if there is any interest or where I should more appropriately have this discussion.