Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitovi/hatchify
JavaScript open source CRUD app generator turns schemas into an app quickly, while allowing customization later.
https://github.com/bitovi/hatchify
crud crud-application jsonapi low-code react sequelize
Last synced: about 6 hours ago
JSON representation
JavaScript open source CRUD app generator turns schemas into an app quickly, while allowing customization later.
- Host: GitHub
- URL: https://github.com/bitovi/hatchify
- Owner: bitovi
- License: mit
- Created: 2023-04-21T18:51:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-12T19:08:54.000Z (7 months ago)
- Last Synced: 2024-04-14T22:37:33.446Z (7 months ago)
- Topics: crud, crud-application, jsonapi, low-code, react, sequelize
- Language: TypeScript
- Homepage: https://hatchify.com
- Size: 9.26 MB
- Stars: 63
- Watchers: 23
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Hatchify
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/8662/badge)](https://www.bestpractices.dev/projects/8662)
[![npm version](https://img.shields.io/npm/v/@hatchifyjs/core.svg)](https://www.npmjs.com/package/@hatchifyjs/core)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)[![Discord](https://img.shields.io/discord/1007137664606150746.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.com/invite/Za8CFzvmz3)
[![Twitter Follow](https://img.shields.io/twitter/follow/bitovi?style=social)](https://twitter.com/bitovi)Hatchify is a web application framework designed to accelerate the development of CRUD applications. If all you need is basic app, Hatchify can provide you with a fully functional system straight from a datatype schema. If you have more specialized requirements, Hatchify makes it easy to customize every part of the application to meet your needs.
Hatchify is structured as a number of modular libraries that can be consumed individually to use as much, or as little, as you require. Hatchify provides the speed of low-code development and the extensibility of custom code.
- [Getting Started](#getting-started)
- [Guides](#guides)
- [API Docs](#api-docs)
- [Need help or have questions?](#need-help-or-have-questions)## Getting Started
In just a few short steps we will set up a project containing a Hatchify frontend and backend. Our frontend will use [React](https://react.dev/) and [MUI](https://mui.com/), and our backend will be using [Koa](https://koajs.com/). The project also uses [Vite](https://vitejs.dev/) as a dev server which handles much of the React configuration for us.
> ✏️ Perform all the following steps:
>
> **Note:** The ✏️ icon indicates when to follow along!1. Ensure you’re using [node 18 and npm 9 or above](https://nodejs.org/en/download)
```bash
node -v
npm -v
```2. Create a new project:
```bash
npm init @hatchifyjs@latest
```- For the backend prompt answer: "Koa"
- For the database prompt answer: "SQLite"3. Change into the project directiory and start the server:
```bash
cd hatchify-app
npm run dev
```4. Navigate to the Hatchify welcome screen at [http://localhost:3000/](http://localhost:3000/):
Congrats, you’ve got a seed of something great started!
### Schemas
Hatchify’s schemas define your data structure fields and relationships. We share these schemas across our backend and frontend to create database tables, generate REST endpoints, and create React components and data fetchers. Because these schemas are the backbone of our frontend and backend, we will place them in the empty schemas.ts file at the root directory of our project.
> ✏️ Update `schemas.ts` file with the following:
```ts
// hatchify-app/schemas.ts
import { belongsTo, boolean, dateonly, integer, hasMany, string } from "@hatchifyjs/core"
import type { PartialSchema } from "@hatchifyjs/core"export const Todo = {
name: "Todo", // 👀
attributes: {
name: string({ required: true }), // 👀
dueDate: dateonly(),
importance: integer(),
complete: boolean({ default: false }),
},
relationships: {
user: belongsTo("User"), // 👀
},
} satisfies PartialSchemaexport const User = {
name: "User",
attributes: {
name: string({ required: true }),
},
relationships: {
todos: hasMany("Todo"), // 👀
},
} satisfies PartialSchema
```As soon as you save this change, the app will automatically reload to include the new data types you've added:
This defines a `Todo` and `User` type, each with some attributes. It also creates a relationship where a Todo `belongsTo` a User, and each user `hasMany` Todos.
You can refer to [our documentation](/docs/core/README.md) for more information on how to define schemas.
### Seed Data
Hatchify doesn’t currently generate forms (though we are working on it!). To add data, you can use the REST APIs that Hatchify’s middleware provides.
## Seeding Sample Data
✏️ Run the following command in a new terminal window to seed some sample data:
```bash
npx hatchify-gsg-seed
```This command will run a script that uses the REST API to seed some sample data into the database. For more information on the request being made, you can reference the create function in the [hatchedKoa.model documentation](docs/koa/hatchedKoa.model.md#create).
To learn more about the service layer, read [the docs regarding our JSON:API implementation](docs/jsonapi/README.md)
With some data in place, we can now further review the project.
### Interact with the UI
Now that data has been seeded the UI should look like:
You can start using this basic app to sort & filter the data:
What you've built is currently bare bones, but read through our guides in the following section to learn how to enhance it to meet your needs.
## Guides
Continue learning more about the Hatchify feature set with these guides that continue from the example above:
- [Using PostgreSQL DB](docs/guides/using-postgres-db.md)
- [Adding custom endpoints](docs/guides/adding-custom-endpoints.md)
- [Adding request authorization](docs/guides/adding-request-authorization.md)
- [Customizing your list](docs/guides/customizing-your-list.md)
- [Adding checkboxes to the list](docs/guides/adding-checkboxes-to-the-list.md)
- [Application data validation](docs/guides/application-data-validation.md)
- [Production / Custom Usage Guide](docs/guides//production-custom-usage.md)
- [Adding form-like behavior to the DataGrid](docs/guides/adding-form-like-behavior.md)## API Docs
Learn how to make Hatchify match your needs with its technical interface documentation:
- [Core](docs/core/) - Learn how to define a Schema, attributes, and relationships with Hatchify's interface for defining your data.
- [Attributes](docs/core/attribute-types/README.md)
- [Relationships](docs/core/relationship-types/README.md)
- [Schema Naming](docs/core/PartialSchema.md)
- [JSON:API](docs/jsonapi/README.md) - Learn the details of our JSON:API implementation.
- [Creating](docs/jsonapi/creating.md)
- [Reading](docs/jsonapi/reading/README.md)
- [Filtering](docs/jsonapi/reading/filtering/README.md)
- [Paginating](docs/jsonapi/reading/paginating/README.md)
- [Sorting](docs/jsonapi/reading/sorting/README.md)
- [Relationships](docs/jsonapi/reading/relationships/README.md)
- [Sparse Fields](docs/jsonapi/reading/sparse-fields/README.md)
- [Updating](docs/jsonapi/updating.md)
- [Deleting](docs/jsonapi/deleting.md)
- Koa - Learn how Hatchify leverages Koa middleware functionality
- [API Docs](docs/koa/README.md)
- Express - Learn how Hatchify leverages Express middleware functionality
- [API Docs](docs/express/README.md)
- React - Learn how to use and customize Hatchify's schema-driven library of React components and CRUD methods
- [REST Client](docs/react-jsonapi/README.md)
- [API Docs](docs/react/README.md)
- [Components](docs/react/hatchedReact.components.md)## Need help or have questions?
This project is supported by [Bitovi](https://bitovi.com/), a web software consultancy. You can get help or ask questions on our:
- [Discord Community](https://discord.gg/aJJrvv92XV)
- [Twitter](https://twitter.com/bitovi)
Or, you can hire us for training, consulting, or development. [Set up a free consultation.](https://www.bitovi.com/digital-consulting-services)
## Read more about Hatchify
Gain more insight into Hatchify by checking out our blog posts.
- [Introducing Hatchify: Low-code libraries for React, Node, and Sequelize](https://www.bitovi.com/blog/introducing-hatchify-low-code-libraries-for-react-node-and-sequelize)
- [Hatchify: The Fastest Way to Build JSON: APIs](https://www.bitovi.com/blog/hatchify-the-fastest-way-to-build-jsonapis)## Trying Hatchify Online
You can try Hatchify online on [StackBlitz](https://stackblitz.com/edit/bitovi-hatchify-t7amou?embed=1&file=backend%2Findex.ts). It runs the Hatchify-based build setup directly in the browser, so it is almost identical to the local setup but doesn't require installing anything on your machine.