- Download Files
- In your cmd, write "node server.js"
- Open browser and enter the domain "http://localhost:3000/"
Sort Alphabetically: Sorts users Alphabetically
Sort reverse Alphabetically: Sorts users reverse Alphabetically
Favorite: Sorts users by if the favorite tag on the user is true of false
Search by name / Search: Search after a user and click search to find them
Input:
- Name
- Birthday
- Start date
- Genres
- Labels
- Website URL
- Image URL
- Short Description
- Submit info
Each artist name is clickable to show a detailed view
Edit user: A popup alert will show where you can edit each value seperatly
Delete user: Deletes the artist/user youre on
Favorite user: Sets the favorite tag on the artist/user to true, when you filter after favorites it will show
POST http://localhost:3000/artists json={ 'name': 'Silas', 'birthdate': '2003-02-05', 'activeSince': '2023-01-01', 'genres': "None", 'labels': "None", 'favorite': False, 'website': 'https://example.com', 'image': 'https://example.com/image.jpg', 'shortDescription': 'A brief description' })
GET http://localhost:3000/artists
GET http://localhost:3000/artists/id
PUT http://localhost:3000/artists/id json={ 'name': 'Silas', 'birthdate': '2003-01-01', 'activeSince': '2020-01-01', 'genres': "", 'labels': "", 'favorite': False, 'website': 'https://example.com', 'image': 'https://example.com/image.jpg', 'shortDescription': 'A brief description' }