Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 848 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 848 Bytes

Migrate the course selling app to next.js

Until now we've built a basic course selling application

  • It uses React for the frontend
  • It uses MongoDB as the database
  • It uses Node.js as the Backend server
  • It is written in JS

Link to it - https://github.com/100xDevs-hkirat/week-10

The assignment of this week is to move the application over to NextJS

You can bootstrap a nextjs application by calling -

npx create-next-app@latest

If you have followed the video from Week 10.2, please select these configs to use the Page router (vs the new NextJS 13 app router)

Image

The goal is to -

  • Move the frontend over to NextJS
  • Move the backend over to NextJS API
  • Convert the complete project to Typescript (and not use JS)