Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fac24/week1-alex-hallie-hussain-sonia
A microblogging site
https://github.com/fac24/week1-alex-hallie-hussain-sonia
Last synced: 3 days ago
JSON representation
A microblogging site
- Host: GitHub
- URL: https://github.com/fac24/week1-alex-hallie-hussain-sonia
- Owner: fac24
- Created: 2022-05-11T09:56:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-14T09:37:32.000Z (over 2 years ago)
- Last Synced: 2023-03-06T07:36:37.098Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://micro-blogge.herokuapp.com/
- Size: 97.7 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bløgge: a microblogging website
## Summary
Made for the [Week I project](https://learn.foundersandcoders.com/course/syllabus/apprenticeship/server/project/) of the Founders and Coders full-time apprencticeship, a microblogging website made without HTML.
## How To Install
- Clone repository
- Make sure Node and npm are installed
- Command line: npm run dev## User Stories
- As an opinionated person, I want to: post my thoughts so others can read them
- As a bored person, I want to: read what other people have posted
- As an impulsive person, I want to: delete my posts so no one can see them anymore## User Journey
1. The user lands on the page
2. The user sees a range of sample posts
3. The user enters their name, writes a thought and clicks submit
4. The user sees their post join the other posts
5. The user is consumed by regret and deletes their post
6. The user chooses to finish what they have begun and deletes the posts of others## Requirements
- [x] A page with a form to submit posts, and a page showing all posts [functionality achieved on one page]
- [x] No .html files (all HTML responses should be created dynamically within Node)
- [x] No client-side JavaScript (all logic should happen on the server)
- [ ] All static assets served correctly (CSS, favicon etc)
- [x] Tests for each server route
- [x] A responsive, mobile-first design
- [ ] Ensure your app is accessible to as many different users as possible## Further Steps
- We considered adding a date-time stamp to the posts, following an example from fac-23
- Make the layout more responsive and mobile-friendly
- More accessibility testing would have been good
- Have more recent posts appear above older ones