{"id":26515921,"url":"https://github.com/erudit-js/erudit","last_synced_at":"2026-04-12T16:01:01.411Z","repository":{"id":263800355,"uuid":"887090231","full_name":"erudit-js/erudit","owner":"erudit-js","description":"🤓 CMS for perfect educational sites.","archived":false,"fork":false,"pushed_at":"2026-03-26T12:15:38.000Z","size":7258,"stargazers_count":8,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-27T04:30:17.401Z","etag":null,"topics":["cms","education","nuxt","self-learning","ssg","vue","web"],"latest_commit_sha":null,"homepage":"","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/erudit-js.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","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}},"created_at":"2024-11-12T06:32:41.000Z","updated_at":"2026-03-24T16:56:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"2456be64-b8d5-40d5-bcec-786536ba9d4a","html_url":"https://github.com/erudit-js/erudit","commit_stats":null,"previous_names":["gwynerva/erudit","erudit-js/erudit"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/erudit-js/erudit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erudit-js%2Ferudit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erudit-js%2Ferudit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erudit-js%2Ferudit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erudit-js%2Ferudit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erudit-js","download_url":"https://codeload.github.com/erudit-js/erudit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erudit-js%2Ferudit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31305971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T09:48:21.550Z","status":"ssl_error","status_checked_at":"2026-04-02T09:48:19.196Z","response_time":89,"last_error":"SSL_read: 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":["cms","education","nuxt","self-learning","ssg","vue","web"],"created_at":"2025-03-21T06:23:28.534Z","updated_at":"2026-04-02T12:02:34.167Z","avatar_url":"https://github.com/erudit-js.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\" style=\"text-align: center;\"\u003e\n    \u003cimg src=\"./packages/erudit/public/logotype.svg\" width=\"100px\" /\u003e\n\u003c/p\u003e\n\n# Erudit\n\nErudit is a CMS for perfect community-driven educational sites:\n\n- Content is written in **JSX/TSX** using custom DSL tags like `\u003cP\u003e`, `\u003cProblem\u003e`, `\u003cFlex\u003e` and many more provided by [`@erudit-js/prose`](https://github.com/erudit-js/erudit/tree/main/packages/prose) package and powered by [`tsprose`](https://github.com/Gwynerva/tsprose).\n- **Type-safe cross-references** with automatic generation of tables of contents, search indexes, and content dependencies.\n- Full **TypeScript power**: variables, functions, type-safe tag props, and more.\n- Nuxt-powered **fully static** (no server required) site with **adaptive design** (looks good on both mobile and desktop).\n\n## Minimal Example\n\nCreate empty folder, install `erudit` package and run preparation script:\n\n```bash\nnpm install erudit\nnpx erudit prepare\n```\n\nFor a smoother writing experience, I suggest building the project first:\n\n```bash\nnpx erudit build\n```\n\nThis command needs to be run **only once!**\u003cbr\u003e\nRun it again if you change `erudit.config.ts` or after updating the Erudit package.\n\nThat’s it!\nStart writing content in the `content` folder.\nYou can further customize the project by editing `erudit.config.ts`.\n\nTo preview your content changes live, run:\n\n```bash\nnpx erudit launch\n```\n\nThis starts a local web server with a live preview of your content at `http://localhost:3000`.\n\nTo generate and preview a fully static site, run:\n\n```bash\nnpx erudit generate\nnpx erudit preview\n```\n\n## Monorepo Structure\n\n- `packages/core` — Erudit types, schemas, tools\n- `packages/cli` — CLI for running, building and previewing Erudit projects\n- `packages/prose` — custom JSX DSL with collection of default and pluggable elements\n- `packages/erudit` — Erudit Nuxt Layer (watches content, builds it and serves site)\n\n## Local Development\n\n1. Fork `erudit-js/erudit` repository to your GitHub account and then clone it to your local device\n2. Install [Bun](https://bun.sh/) if you don't have it already\n3. Run `bun install` to install dependencies\n4. Run `bun build` to build all packages (`core`, `cli`, `prose`, except `erudit` as it is a Nuxt Layer)\n\nNow the project is ready for your edits.\nTry out your changes using the playground Erudit project in the `playground` directory.\n\nCommands to control the playground Erudit project (run from the repository root):\n\n```bash\nbun play\n\nbun play:prepare\n\nbun play:build\nbun play:launch\n\nbun play:generate\nbun play:preview\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferudit-js%2Ferudit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferudit-js%2Ferudit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferudit-js%2Ferudit/lists"}