/next-todo-app

FullStack JS App built with NextJS and Mongo

Primary LanguageTypeScript

TypeScript Next.js example

This is a really simple project that shows the usage of Next.js with TypeScript.

Show cases

  • How to use server-side rendered content
  • How to integrate Material-UI JSS styling through a custom app & document.
  • How to write a RESTful Api
  • How to integrate MongoDB

Prerequisites

You need a running MongoDB with the default host+port in order for the example to work. mongo:latest Docker image should suffice!

docker run -p 27017:27017 mongo:latest 

How to run in dev mode

npm run dev

How to build and run in production mode

npm run build
npm start