This is a Next.js project bootstrapped with create-next-app
.
This project has been built under nextJs because the several troubles find using react-router or react-router dom and expressJs
under the hood have Reac-query for the state managment and fetching, react context for local theme state hanlding, styled-components to preprocesing the styles and give them super powers in theming making ease to sustain and the only external dependency was the react-intersection-observer to handle the scrolling position (use vanilla intersection observer in react is a pain)
this app counts with an wide coberture range on unit testing wtih jest and react-testing-library additional has and integration and E2E testing suite with cypress
this has an pipeline direct from github to heroku has been deployed on https://platzi-recipes.herokuapp.com/
First, install dependencies:
npm install
# or
yarn install
Then, run the development server:
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.jsx
. The page auto-updates as you edit the file.
API routes can be accessed on http://themealdb.com/api/json/v1/1. This endpoint can be edited in pages/api/services.js
.
The pages/api
directory is mapped to /api/*
. Files in this directory are treated as API routes instead of React pages.
To run unit testing:
npm run test
# or
yarn test
Run the cypress suite:
npm run test:cypress
# or
yarn test:cypress
Is widely recomended generate an production build on local before run the cypress test suite
To run unit testing:
npm run build
# or
yarn build
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!