This repository is designed as the foundation for coding playgrounds in the Web Engineering course. It offers a structured space for experimenting with and mastering various web development technologies and practices. The project is based on this repository from MDN.
The project introduces a lot of code smells for you to tackle. Lets get coding!
- Coding playgrounds are individual work
- There will be 2 serparate submissions:
- Base Playgrounds: Submission Deadline 03.11.2024
- Extended Playgrounds: Submission Deadline 16.01.2025
- The playgrounds will be guided through in our sessions - still there will be distance work!
- Use this base template to create your project repository.
- Each playground is linked in the corresponding course section.
- You can find the submissions at the bottom of the Moodle course.
- Wonderful UI-design 😍
- Loads bear data using Wikipedia API 🐻
- Original Wikipedia Page can be found here
- Worst JS coding practices 😰
- No Build and Dependency Management at all 🔥
- No JS Frameworks allowed to solve the base coding playgrounds (e.g. Vue.js, Angular, React, Svelte,...) - don't panic we will come to them!
- No CSS Libraries allowed (e.g. Bootstrap, Material, Tailwind, ...)
Submit your coding repository link in Moodle. Send me an invitation to your repository if it is set to private:
GitHub: leonardo1710
GitLab: [email protected]
The provided base project template contains some bugs and bad JS coding practices for you to fix in your first playground. Take a look into the component files and get a grasp of the inner workings of the provided project.
ATTENTION: After finishing the JS Playground please create a commit or branch and link it below. Otherwise it is not possible to grade your 1. submission, since we will switch to TypeScript afterwards!
This is my JS Playground commit/branch: <LINK_TO_YOUR_COMMIT>
Tasks: Fix application code and answer the questions:
- (2) Adapt the code to use
async/await
instead of thethen()
-callback hell and refactor the functions to use arrow function syntax instead offunction()
-syntax. - (2) Add proper error handling to the code using
try/catch
and provide useful error messages to the users. Additionally, check the image URL availability before rendering the images in HTML. Provide placeholder images if the given URL does not exist. - (1) Extract the range value from the provided Wikitext (response from the API). Examine the provided Wikitext format inside
extractBears
function. - (1) Split the code into separate modules with regards to clean separation of concerns.
- (1) Eliminate all other bad coding practices you can find.
- (3) Answer the following questions and provide some examples inside the
Readme.md
file.
What bad coding practices did you find? Why is it a bad practice and how did you fix it?
Present your findings here...
console.log('Make use of markdown codesnippets to show and explain good/bad practices!')
Build the application with npm
and a build and a dependency management tool of your choice (e.g. Vite, Webpack, or others).
Here are some additional resources: Package Management and Bundling, Vite Tutorial, Webpack Tutorial.
Tasks:
- (1) Integrate
npm
and a build management tool into your project. - (2) Configure your project to use Typescript as your primary development language and adapt the code and file extensions respectively.
- (2) Use ESLint and Prettier inside your project - rulesets can be found below.
- (1) Keep your builds clear and add dependencies to the right build (e.g. do not add dev dependencies inside the production build and vice versa).
- (1) Define the following tasks within
npm scripts
:dev
: starts the development serverbuild
: runs the typescript compiler and bundles your application - bundling depends on your chosen build tool (e.g. Vite, Webpack) but typically bundles multiple files into one, applies optimizations like minification and obfuscation and outputs final results to adist
orbuild
directory.lint
: runs ESLint on all.js
and.ts
files in your projects/src
directorylint:fix
: runs and also fixes all issues found by ESLintformat
: formats all.js
and.ts
files in your projects/src
directoryformat:check
: checks if the files in the/src
directory are formatted according to Prettier's rules.
- (1) Configure a pre-commit hook that lints and formats your code using husky and lint-staged. A tutorial can be found here.
- (2) Answer the question at the end of this section inside
Readme.md
file:
ESLint Configurations
Use ESLint configs standard-with-typescript and TypeScript ESLint Plugin.
Your .eslintrc
file should have the following extensions:
...
extends:
- standard-with-typescript
- plugin:@typescript-eslint/recommended
- plugin:prettier/recommended
- prettier
...
Prettier Configurations
Apply the following ruleset for Prettier:
{
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 80
}
What improvements in your codebase were introduced by using TS instead of JS? Name at least 3 and explain why.
Present your findings here...
Implementation of a CI/CD pipeline to automate the development and deployment process – write automated tests.
Here are some additional resources: GitHub Actions Tutorial and GitHub Actions Docs.
Tasks:
- (1.5) Write at least 2 meaningful unit tests (use Vitest or Jest) for your project and configure the following tasks in
npm scripts
:test
: runs all files that include.test.
or.spec.
, e.g.:example.test.ts
test:coverage
: runs tests liketest
but also creates a test coverage report
- (1) Configure 2 Workflows in GitHub Actions, one for development and one for deployment:
- Create a
development
branch inside your repository - (1) Development Workflow should at least test and lint your code when developers push to branch
development
- (1) Deployment Workflow is triggered when developers push into
main
branch. It should at least test, lint and build your source code. Afterwards the build artifacts of your application should be automatically deployed to Github Pages (or another hosting provider of your choice).
- Create a
- (0.5) Reuse existing workflows or jobs whenever possible!
You might have noticed that the base project has a number of accessibility issues - your task is to explore the existing site and fix them. Use the tools presented in our accessibility workshop to test the accessibility in your project.
(0.5) Color
Test the current color contrast (text/background), report the results of the test, and then fix them by changing the assigned colors.
Present your reports here.
(0.5) Semantic HTML
Report on what happens when you try to navigate the page using a screen reader. Fix those navigation issues.
Present your reports here.
(0.5) Audio
The <audio>
player isn't accessible to hearing impaired (deaf) people — can you add some kind of accessible alternative for these users?
Present your findings and fixes here.
(1) Forms
- The
<input>
element in the search form at the top could do with a label, but we don't want to add a visible text label that would potentially spoil the design and isn't really needed by sighted users. Fix this issue by adding a label that is only accessible to screen readers. - The two
<input>
elements in the comment form have visible text labels, but they are not unambiguously associated with their labels — how do you achieve this? Note that you'll need to update some of the CSS rule as well.
Present your findings and fixes here.
(0.5) Comment section
The show/hide comment control button is not currently keyboard-accessible. Can you make it keyboard accessible, both in terms of focusing it using the tab key, and activating it using the return key?
Present your findings and fixes here.
(1) The table
The data table is not currently very accessible — it is hard for screen reader users to associate data rows and columns together, and the table also has no kind of summary to make it clear what it shows. Can you add some features to your HTML to fix this problem?
Present your findings and fixes here.
(1) More Findings
What other accessibility issues did you find? Explain how you did fix them.
Please create a new independent Repository for these playgrounds and submit a link to it in the Moodle submission.
Additionally, provide a description of how to start your frontend and backend services inside the README.md
.
Submit your coding repository link in Moodle. Send me an invitation to your repository if it is set to private:
GitHub: leonardo1710
GitLab: [email protected]
In this playground you will migrate your application to a frontend framework of your choice.
Tasks:
- Migrate your application to a frontend framework of your choice (e.g. React, Angular, Vue.js, Svelte,...)
- All previous features should still work
- The application still should use build and dependency management
- Adapt your
npm scripts
if necessary
In this playground you will use a backend framework of your choice and connect it with an API to your frontend application.
Tasks:
- (3) Setup a backend framework of your choice
- (2) Create an API your frontend will be connected to (REST, GraphQL, gRPC, you choose...)
- (2) Your backend should now request the bear data from presented Wikipedia API
- (3) Replace the frontend Wikipedia API calls with calls to your backend - the functionality of your frontend should work as before!
- (Optional): you may want to introduce some sort of caching layer for Wikipedia API requests
Dockerize your frontend and backend applications. It should be possible to start all services in the corresponding mode (development, production) with a single command (e.g. use Docker Compose for this).
Tasks:
- (6) Create multi-stage Dockerfiles for your applications (depending on your frameworks):
- The frontend Dockerfile should: 1. run the app in a development environment 2. build the app 3. serve build artefacts over Nginx
- The backend Dockerfile should: 1. run the app in a development environment 2. build the app if there is a build step in your framework (optional) 3. serve the app
- (4) Create two docker-compose files to orchestrate you applications in
development
andproduction
mode:- Define ports and dependencies
- Define corresponding stage (development, production)
- Use environment variables if possible
- Your application should start with the following commands:
- Development:
docker-compose -f docker-compose.yml up --build
- Production:
docker-compose -f docker-compose.prod.yml up --build
- Development: