data编程代写、代做Java设计程序
Introduction
This final project is a comprehensive assignment designed to assess your mastery of web development concepts covered throughout the course. It is a significant undertaking that will require substantial time and dedication. Please read this document thoroughly before beginning and plan your schedule accordingly to ensure timely completion.

Overall Project Description
You will develop a Software as a Service (SaaS) web application that performs CRUD (Create, Read, Update, Delete) operations. The application must be based on React, Node.js, Prisma, and implement authentication using token cookies as learned in class.

Project Ideas: Online store, food ordering system, personal journal, learning management system, social network, etc.
Project Requirements
1. Security
●Authentication: Implement login and registration pages to allow users to create accounts and authenticate.
●Access Control: Some pages should be accessible to all users, while others should require authentication.
●Non-authenticated Users: Can access general features (e.g., view products, read reviews).
●Authenticated Users: Required for actions needing user identity (e.g., bookmarking, commenting, adding to cart).
●API Endpoints: Must use the token cookie approach as taught in class. No other security mechanisms are allowed.
2. Code Project Structure
Organize your project with the following folder structure:
●client folder:
○Contains all client-side code.
○Must use React; no other frontend frameworks are allowed.
○Include your unit tests here (see Testing section).
●api folder:
○Contains your API and all CRUD endpoints.
○Use Node.js and Prisma to connect to your database.
○The prisma folder will be within the api folder.
●accessibility_reports folder:
○Store your accessibility reports here (see Accessibility section).
●README file:
○Provide a project description and links to your deployed application.
○Include any special instructions necessary for running or testing your project.
3. External API Integration
●Requirement: Your React application must integrate with an external Web API for read-only operations.
●Examples: Google Maps, IMDb, YouTube, Yelp, Weather Channel, etc.
○A good starting point is RapidAPI
●Usage: Fetch data based on user input or interaction (example: get weather data based on location).
●Note: Use free tiers only. If you exceed the free tier limits, ensure your code correctly demonstrates the integration.
4. Accessibility
●Reports: Include Lighthouse accessibility reports for three pages.
●Tool: Use Google Lighthouse
●Submission: Save the reports in a readable format (image, PDF, etc.) within the accessibility_reports folder.
5. Testing
●Unit Tests: Implement at least three unit tests.
○Each test must target a different React component.
○Use React Testing Library for your tests.
●Location: Place all unit tests within the client folder.
6. Responsive Design
●Requirement: Your web application must be responsive and usable on desktops, tablets, and phones.
●Implementation: Ensure that web pages adapt seamlessly to any browser width.
7. Deployment
●Instructions: Follow the deployment guidelines provided here
●Components to Deploy:
○Database
○API Server
○Client Side
●Documentation: Provide deployment links in your README file.
Project Parts
Part 1: Project Planning
Deliverables:
1.Project Description:
a.A brief overview (maximum two paragraphs) of your project.
b.Outline intended functionalities and scope.
c.Must include at least one of each CRUD operation.
2.Database Diagram:
a.Include all tables with columns, primary keys (PK), and foreign keys (FK).
b.A minimum of three tables is required.
3.Pages and Endpoints:
a.List of Pages: Outline all pages you plan to build (e.g., homepage, profile page, details page).
b.List of API Endpoints: Specify all API endpoints you plan to implement.
c.Endpoint Usage: For each page, explain which API endpoints will be needed.
d.No need to specify the external API requirements here yet.
e.No need to specify what pages are for anonymous users or not.
Submission:
●Create a shared Google Doc containing all the items above and submit the google doc link in Canvas.
●No code is required for this part.
Grading Criteria (Total: 100 Points):
●Project Description (20%): The project is well-defined and achievable.
●Database Design (30%): Comprehensive and correctly models the application's data.
●Planning Thoroughness (50%): Detailed lists of pages and endpoints, showing thoughtful planning.
Part 2: Foundation Building
Now that you've defined your project requirements, begin coding the foundational elements.
Objectives:
●API Development (api Folder):
○Set up your three tables using Prisma.
○Implement the following endpoints:
■/ping: A simple endpoint to test API responsiveness.
■1 GET Endpoint: Lists all items.
■1 POST Endpoint: Inserts one item (separate from the register endpoint). This must use the requireAuth middleware.
○Authentication Endpoints:
■/login
■/register
■/logout
■requireAuth Middleware: Checks for the token cookie and returns a 401 error if the token is invalid.
●Client Development (client Folder):
○Authentication Pages:
■Register Page: Connects to the /register endpoint.
■Login Page: Accepts username and password, connects to the /login endpoint.
○Functional Pages:
■Homepage: Public page describing your website with links to login/register.
■Items List Page: Displays all items by connecting to the GET endpoint.
■Item Insertion Page: Allows insertion of a new item by connecting to the POST endpoint.
●Styling: No CSS styling is required at this stage; focus on basic functionality.
Grading Criteria (Total: 100 Points):
●API Development:
○Prisma tables set up correctly (10%)
○Authentication endpoints (/login, /register, /logout) (10%)
○GET endpoint implemented (10%)
○POST endpoint implemented (10%)
○requireAuth middleware used appropriately (10%)
●Client Development:
○Register page functionality (10%)
○Login page functionality (10%)
○Homepage accessibility and content (10%)
○Items list page functionality (10%)
○Item insertion page functionality (10%)
Part 3: Full Functionality and Refinement
This part requires the completion of all functionalities, ensuring the application is fully functional, secure, and user-friendly.

Objectives:
●Enhance UI/UX with CSS and Responsive Design (you can use CSS frameworks if you want)
●Implement All Remaining CRUD Operations
●Ensure All API Endpoints are Fully Functional
●Integrate External API Data
●Validate Data on Both Client and Server Sides
●Complete Unit Tests
●Finalize Accessibility Compliance
●Deploy the Application

Grading Criteria (Total: 100 Points):
1.CSS and User Interface (25%):
a.Consistent styling across all pages.
b.Responsive design for mobile, tablet, and desktop devices.
2.JavaScript and React Components (25%):
a.All React pages are fully functional.
b.Correct API integration for all endpoints.
c.Client-side data validation in forms.
3.API Endpoints (20%):
a.All endpoints are implemented and operational.
b.Data is correctly saved to the database.
c.Server-side data validation.
d.Secure endpoints protected with authentication middleware.
4.Security (10%):
a.Client correctly handles authentication using token cookies.
b.At least two API routes validate the token cookie for security.
5.Testing (5%):
a.At least three unit tests on the client side using React Testing Library.
b.Each test targets a different React component.
6.Web Accessibility (5%):
a.Lighthouse Accessibility scores of 80 or above for at least three pages.
b.Reports included in the accessibility_reports folder.
7.Deployment (5%):
a.Client, API, and database are deployed and accessible.
b.Deployment links provided in the README file.
8.Code Quality and Attention to Detail (5%):
a.Code is clean, readable, and well-organized.
b.Variable and function names are meaningful.
c.Unnecessary code and console logs are removed.
Submission Guidelines
●Part 1: Submit the shared Google Doc link in canvas.
●Parts 2 and 3: Please submit your complete project code through GitHub Classroom, ensuring that each part is submitted to its corresponding repository.
●Deadline: Refer to the course schedule for submission deadlines for each part.
Conclusion
This final project is an opportunity to showcase your understanding and application of web development concepts. Start early, plan thoroughly, and don't hesitate to reach out if you have any questions. Good luck, and I look forward to seeing your innovative solutions!

Remember: The key to success in this project is incremental development and testing. Build the foundational elements first, ensure they work correctly, and then add features progressively.

热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图