All Projects → gothinkster → Aurelia Realworld Example App

gothinkster / Aurelia Realworld Example App

Licence: mit
Exemplary real world application built with Aurelia

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Aurelia Realworld Example App

bcx-aurelia-reorderable-repeat
An Aurelia repeater supports drag & drop reordering automatically.
Stars: ✭ 20 (-89.07%)
Mutual labels:  aurelia
House
Proof of Concept and Research repository.
Stars: ✭ 37 (-79.78%)
Mutual labels:  aurelia
Servicestackvs
ServiceStackVS - Visual Studio extension for ServiceStack
Stars: ✭ 117 (-36.07%)
Mutual labels:  aurelia
Cli
The Aurelia 1 command line tool. Use the CLI to create projects, scaffold components, and bundle your app for release.
Stars: ✭ 401 (+119.13%)
Mutual labels:  aurelia
Aurelia Google Analytics
An Aurelia.io plugin that adds Google Analytics page tracking to your project.
Stars: ✭ 28 (-84.7%)
Mutual labels:  aurelia
Sqlformat
.NET SQL Parser and Formatter Tool and SSMS Plugin
Stars: ✭ 49 (-73.22%)
Mutual labels:  aurelia
aurelia-datatable
A 100% aurelia based data table component.
Stars: ✭ 32 (-82.51%)
Mutual labels:  aurelia
Generator Spfx
Open-source generator to extend the capabilities of the Microsoft SPFx generator
Stars: ✭ 150 (-18.03%)
Mutual labels:  aurelia
Aurelia Store Examples
Aurelia Store Plugin examples
Stars: ✭ 29 (-84.15%)
Mutual labels:  aurelia
Store
Aurelia single state store based on RxJS
Stars: ✭ 103 (-43.72%)
Mutual labels:  aurelia
Nswag
The Swagger/OpenAPI toolchain for .NET, ASP.NET Core and TypeScript.
Stars: ✭ 4,825 (+2536.61%)
Mutual labels:  aurelia
Bcx Aurelia Dnd
Aurelia Drag and Drop.
Stars: ✭ 20 (-89.07%)
Mutual labels:  aurelia
Aurelia Toolbelt
A bunch of components from bootstrap 4, jquery and vanilla js for Aurelia framework
Stars: ✭ 63 (-65.57%)
Mutual labels:  aurelia
aurelia-typescript-webpack-starter
A minimal Aurelia starter kit written in TypeScript and built using webpack.
Stars: ✭ 28 (-84.7%)
Mutual labels:  aurelia
Aurelia Kendoui Bridge
Stars: ✭ 120 (-34.43%)
Mutual labels:  aurelia
aurelia-fontawesome
Font Awesome 5 Aurelia component
Stars: ✭ 15 (-91.8%)
Mutual labels:  aurelia
Aurelia
Aurelia 2, a standards-based, front-end framework designed for high-performing, ambitious applications.
Stars: ✭ 995 (+443.72%)
Mutual labels:  aurelia
Aurelia Ui Framework
A bespoke UI Framework built on Aurelia for desktop business application
Stars: ✭ 155 (-15.3%)
Mutual labels:  aurelia
Webapiclientgen
Strongly Typed Client API Generators generate strongly typed client APIs in C# .NET and in TypeScript for jQuery and Angular 2+ from ASP.NET Web API and .NET Core Web API
Stars: ✭ 134 (-26.78%)
Mutual labels:  aurelia
Aurelia Slickgrid
Aurelia-Slickgrid a wrapper of the lightning fast & customizable SlickGrid datagrid with a few Styling Themes
Stars: ✭ 100 (-45.36%)
Mutual labels:  aurelia

Build Status

RealWorld Example App

Aurelia codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.

Demo    RealWorld

This codebase was created to demonstrate a fully fledged fullstack application built with Aurelia including CRUD operations, authentication, routing, pagination, and more.

We've gone to great lengths to adhere to the Aurelia community styleguides & best practices.

For more information on how to this works with other frontends/backends, head over to the RealWorld repo.

Community Activity

How it works

Created with aurelia-cli

Getting started

Make sure you have Node and Yarn installed. Then run

yarn install
au run --watch

and Navigate to http://localhost:8080/.

The app will automatically reload if you change any of the source files.

Building the project

Run au build to build the project. The build artifacts will be stored in the dist/ directory. Use the --env prod flag for a production build.

Testing the project

Run au karma to test the project.

Functionality overview

The 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.

General functionality:

  • Authenticate users via JWT (login/signup pages + logout button on settings page)
  • CRU* users (sign up & settings page - no deleting required)
  • CRUD Articles
  • CR*D Comments on articles (no updating required)
  • GET and display paginated lists of articles
  • Favorite articles
  • Follow other users

The general page breakdown looks like this:

  • Home page (URL: /#/ )
    • List of tags
    • List of articles pulled from either Feed, Global, or by Tag
    • Pagination for list of articles
  • Sign in/Sign up pages (URL: /#/login, /#/register )
    • Uses JWT (store the token in localStorage)
    • Authentication can be easily switched to session/cookie based
  • Settings page (URL: /#/settings )
  • Editor page to create/edit articles (URL: /#/editor, /#/editor/article-slug-here )
  • Article page (URL: /#/article/article-slug-here )
    • Delete article button (only shown to article's author)
    • Render markdown from server client side
    • Comments section at bottom of page
    • Delete comment button (only shown to comment's author)
  • Profile page (URL: /#/profile/:username, /#/profile/:username/favorites )
    • Show basic user info
    • List of articles populated from author's created articles or author's favorited articles

IE 11 Support

In order to optimize the app for IE11 or Edge please add bluebird.js as a polyfill for Promises and Fetch.


Brought to you by Thinkster

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].