Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inoles/hackernews
A .NET MAUI app for displaying the top posts on Hacker News that demonstrates Firebase Realtime Database
https://github.com/inoles/hackernews
csharp8 hacker-news iasyncenumerable maui net net-maui xamarin xamarin-android xamarin-ios
Last synced: 2 months ago
JSON representation
A .NET MAUI app for displaying the top posts on Hacker News that demonstrates Firebase Realtime Database
- Host: GitHub
- URL: https://github.com/inoles/hackernews
- Owner: iNoles
- License: gpl-3.0
- Created: 2023-09-07T19:14:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-28T23:24:30.000Z (4 months ago)
- Last Synced: 2024-09-27T09:41:04.673Z (3 months ago)
- Topics: csharp8, hacker-news, iasyncenumerable, maui, net, net-maui, xamarin, xamarin-android, xamarin-ios
- Language: C#
- Homepage:
- Size: 210 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: NewsService.cs
- License: LICENSE
Awesome Lists containing this project
README
# HackerNews
A .NET MAUI app for displaying the top posts on Hacker News.
This app demonstrates how to use IAsyncEnumerable + C# 8.0 to improve performance. Thanks to IAsyncEnumerable, the items are added to the list as soon as they're available making the app feel faster and more responsive.
This app also uses the Firebase Realtime Database REST API.
## Screenshots
## Getting Started
### Prerequisites
- Install the latest version for .NET 8
- Install [.NET MAUI workload](https://docs.microsoft.com/en-us/dotnet/maui/get-started/installation) on your development machine.### Clone the Repository
```bash
git clone https://github.com/iNoles/HackerNews.git
cd HackerNews
```### Run and Build
```bash
dotnet build
dotnet run
```