{"id":16077936,"url":"https://github.com/pocojang/nuxt-realworld","last_synced_at":"2025-04-12T23:06:58.055Z","repository":{"id":40488857,"uuid":"297105441","full_name":"pocojang/nuxt-realworld","owner":"pocojang","description":"🛠 Built a Example App of RealWorld with Nuxt \u0026 Composition API ⚗️","archived":false,"fork":false,"pushed_at":"2021-12-03T03:20:58.000Z","size":3067,"stargazers_count":213,"open_issues_count":9,"forks_count":47,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-12T23:06:51.679Z","etag":null,"topics":["composition-api","example-project","experimental","nuxt","realworld","typescript","vue"],"latest_commit_sha":null,"homepage":"https://nuxt-realworld.vercel.app","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pocojang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-09-20T15:26:58.000Z","updated_at":"2025-03-10T22:24:27.000Z","dependencies_parsed_at":"2022-07-11T06:00:27.123Z","dependency_job_id":null,"html_url":"https://github.com/pocojang/nuxt-realworld","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pocojang%2Fnuxt-realworld","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pocojang%2Fnuxt-realworld/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pocojang%2Fnuxt-realworld/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pocojang%2Fnuxt-realworld/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pocojang","download_url":"https://codeload.github.com/pocojang/nuxt-realworld/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248643006,"owners_count":21138355,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["composition-api","example-project","experimental","nuxt","realworld","typescript","vue"],"created_at":"2024-10-09T10:05:28.438Z","updated_at":"2025-04-12T23:06:58.027Z","avatar_url":"https://github.com/pocojang.png","language":"CSS","funding_links":[],"categories":["vue"],"sub_categories":[],"readme":"# ![Nuxt RealWorld Example App](logo.png)\n\n[![RealWorld Frontend](https://img.shields.io/badge/realworld-frontend-%23783578.svg)](http://realworld.io)\n\n\u003e ### Nuxt + Composition API RFC codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.\n\n\n### [Demo](https://nuxt-realworld.vercel.app)\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;[RealWorld](https://github.com/gothinkster/realworld)\n\n\nThis codebase was created to demonstrate a fully fledged fullstack application built with Nuxt including CRUD operations, authentication, routing, pagination, and more.\n\nWe've gone to great lengths to adhere to the Nuxt community styleguides \u0026 best practices.\n\nFor more information on how to this works with other frontends/backends, head over to the [RealWorld](https://github.com/gothinkster/realworld) repo.\n\n\n# How it works\n\n```bash\n|____api           # api service\n|____components    # Single File Components of Vue\n|____compositions  # @composition-api base logic\n|____pages         # Page Components of Nuxt\n|____plugins       # inject to api service\n|____types         # declare to Vue \u0026 Next type \u0026 Real World Model Type\n```\n\n# Getting started\n\n```bash\n# install dependencies\n$ npm install\nor\n$ yarn install\n\n# serve with hot reload at localhost:3000\n$ npm run dev\nor\n$ yarn dev\n\n# build for production and launch server\n$ npm run build\n$ npm start\nor\n$ yarn build\n$ yarn start\n\n# generate static project\n$ npm run generate\nor\n$ yarn generate\n```\n\n\n## Functionality overview\n\nThe example application is a social blogging site (i.e. a Medium.com clone) called \"Conduit\". It uses a custom API for all requests, including authentication. You can view a live demo over at https://nuxt-realworld.vercel.app\n\n**General functionality:**\n\n- Authenticate users via JWT (login/signup pages + logout button on settings page)\n- CRU* users (sign up \u0026 settings page - no deleting required)\n- CRUD Articles\n- CR*D Comments on articles (no updating required)\n- GET and display paginated lists of articles\n- Favorite articles\n- Follow other users\n\n**The general page breakdown looks like this:**\n\n- Home page (URL: / )\n    - List of tags\n    - List of articles pulled from either Feed, Global, or by Tag\n    - Pagination for list of articles\n- Sign in/Sign up pages (URL: /login, /register )\n    - Use JWT (store the token in localStorage)\n- Settings page (URL: /settings )\n- Editor page to create/edit articles (URL: /editor, /editor/article-slug-here )\n- Article page (URL: /article/article-slug-here )\n    - Delete article button (only shown to article's author)\n    - Render markdown from server client side\n    - Comments section at bottom of page\n    - Delete comment button (only shown to comment's author)\n- Profile page (URL: /profile/username, /profile/username/favorites )\n    - Show basic user info\n    - List of articles populated from author's created articles or author's favorited articles\n\n\n## Vue related implementations of the Realworld app\n[gothinkster/vue-realworld-example-app](https://github.com/gothinkster/vue-realworld-example-app) - vue2, js  \n[AlexBrohshtut/vue-ts-realworld-app](https://github.com/AlexBrohshtut/vue-ts-realworld-app) - vue2, ts, class-component  \n[mutoe/vue3-realworld-example-app](https://github.com/mutoe/vue3-realworld-example-app) - vue3, vite, ts, composition api\n\n[![Brought to you by Thinkster](https://raw.githubusercontent.com/gothinkster/realworld/master/media/end.png)](https://thinkster.io)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpocojang%2Fnuxt-realworld","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpocojang%2Fnuxt-realworld","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpocojang%2Fnuxt-realworld/lists"}