{"id":21100742,"url":"https://github.com/aeria-org/aeria","last_synced_at":"2026-05-23T19:01:18.834Z","repository":{"id":225680665,"uuid":"766282141","full_name":"aeria-org/aeria","owner":"aeria-org","description":"A language designed for the web that integrates with TypeScript","archived":false,"fork":false,"pushed_at":"2026-05-13T20:40:41.000Z","size":11769,"stargazers_count":474,"open_issues_count":3,"forks_count":5,"subscribers_count":7,"default_branch":"master","last_synced_at":"2026-05-13T22:38:16.408Z","etag":null,"topics":["aeria","appsec","bun","deno","javascript","low-code","mongodb","node","odm","orm","prisma","rapid-development","strong-typed","typescript","vibe-coding"],"latest_commit_sha":null,"homepage":"https://aeria-org.github.io/docs/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aeria-org.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["aeria-org"]}},"created_at":"2024-03-02T20:37:19.000Z","updated_at":"2026-05-13T20:39:20.000Z","dependencies_parsed_at":"2026-02-15T05:06:38.792Z","dependency_job_id":null,"html_url":"https://github.com/aeria-org/aeria","commit_stats":null,"previous_names":["aeria-org/aeria"],"tags_count":2933,"template":false,"template_full_name":null,"purl":"pkg:github/aeria-org/aeria","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeria-org%2Faeria","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeria-org%2Faeria/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeria-org%2Faeria/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeria-org%2Faeria/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aeria-org","download_url":"https://codeload.github.com/aeria-org/aeria/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeria-org%2Faeria/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33408490,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T18:09:33.147Z","status":"ssl_error","status_checked_at":"2026-05-23T18:09:31.380Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aeria","appsec","bun","deno","javascript","low-code","mongodb","node","odm","orm","prisma","rapid-development","strong-typed","typescript","vibe-coding"],"created_at":"2024-11-19T23:28:35.196Z","updated_at":"2026-05-23T19:01:18.781Z","avatar_url":"https://github.com/aeria-org.png","language":"TypeScript","funding_links":["https://github.com/sponsors/aeria-org"],"categories":[],"sub_categories":[],"readme":"![Banner](.github/assets/banner.png)\n\u003eA framework to prototype webapps fast so you can touch grass\n\n[![npm](https://img.shields.io/npm/v/aeria.svg)](https://npmjs.com/package/aeria) ![https://github.com/aeria-org/aeria/actions/workflows/ci.yaml](https://github.com/aeria-org/aeria/actions/workflows/ci.yaml/badge.svg)\n\n[Documentation](https://aeria-org.github.io/docs/aeria/) |\n[How to Contribute](.github/CONTRIBUTING.md)\n\nAeria is a framework designed to streamline CRUD-based applications with a type-safe, developer-friendly experience. It includes a lightweight **MongoDB** abstraction layer and a DSL for model definition supporting nested objects, arrays, references, upload fields, and more, making it ideal for applications with complex data structures and relational logic. Additionally, a HTTP routing API with very simple bindings is provided to build business logic.\n\nThe project was created to offer a more cohesive and straightforward way to create data-centric applications using MongoDB compared to alternatives like Express/Mongoose.\n\n### Quickstart\n\n\u003e$ npm create -y aeria-app@latest hello-world\n\n### Features\n\n- Authentication\n- File management\n- Security (rate limiting, entity ownership, RBAC, etc)\n- tRPC-like SDK with 1:1 typing\n- Ready-to-use dashboard extensible with [Vue](https://github.com/vuejs/core)\n\n### Demo\n\n![Demo](.github/assets/demo.gif)\n\n### Frequently Asked Questions\n\n#### Is Aeria a programming language?\n\nA common concern people have when being introduced to something like Aeria is: \"Am I going to learn a whole new language just to use that thing?\".\nAeria has a very flat learning curve because it is not a fully-fledged programming language. It has only two main concepts: **collections** and **contracts**. Learning the whole thing can be done in half an hour or even less.\n\nYou probably won't have a hard time guessing what the code below does:\n\n```aeria\ncollection Person {\n  icon \"person\"\n  properties {\n    name str\n    job enum @values([\n      \"programmer\",\n      \"doctor\",\n      \"policeman\",\n    ])\n    age int @minimum(1) @maximum(120)\n    profile_picture File @accept([\"image/*\"])\n  }\n  functions {\n    get\n    getAll\n    insert\n    remove\n    upload\n  }\n}\n```\n\nOr that one:\n\n```aeria\ncontract GetPersonBySlug {\n  payload {\n    properties {\n      slug str\n    }\n  }\n  response\n    | Error {\n      properties {\n        httpStatus int\n        code str\n      }\n    }\n    | Result Person\n}\n```\n\n#### Why should I consider using it?\n\nAeria brings a lot of benefits when you need to prototype an MVP fast and then scale to a more robust project. The most obvious is that the amount of code -- and thus time -- needed to implement a feature is dramatically reduced compared to conventional approaches, thanks to the DSL and builtins that the framework offers.\n\nAlong with that, it ships a ready-to-use extensible dashboard and a 1:1 typed SDK. It is also [a lot faster than Mongoose and Prisma when dealing with references](https://github.com/aeria-org/benchmark).\n\nTo sum it up: if your database pick is MongoDB and you are going for building a project fast and you care about type-safety, Aeria is the right pick for you.\n\n### Community\n\nReach out to learn more about Aeria and know about upcoming features.\n\n[![Aeria Server](https://img.shields.io/discord/1218448912185163816.svg?label=Discord\u0026logo=Discord\u0026colorB=7289da\u0026style=for-the-badge)](https://aeria.is-a.dev/discord)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faeria-org%2Faeria","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faeria-org%2Faeria","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faeria-org%2Faeria/lists"}