HamidReazaNikoonia / next-task-project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

POST TASK: ROOMVUE

NOTE: In This Project I dont realy care about design, just working on code structures and code quality

Guide

run the development server

npm run dev
# or
yarn dev

Build Project

npm run build
# or
yarn build

Project (SSR & SSG)

This Project implemented in SSR and SSG

SSR

// Get all Posts
'/http://localhost:3000/blog/ssr';

// Get Specific Post
'http://localhost:3000/blog/ssr/:id';

SSG

// Get all Posts
'/http://localhost:3000/blog/ssg';

// Get Specific Post
'http://localhost:3000/blog/ssg/:id';

Note

1- In Small Project we could handles all state with context but because this is test project i used both (context and redux)

About


Languages

Language:TypeScript 68.7%Language:SCSS 30.4%Language:JavaScript 0.9%