Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imnotannamaria/next-13-ecommerce-devstore
A ecommerce build with Next 13
https://github.com/imnotannamaria/next-13-ecommerce-devstore
nextjs nextjs13 react
Last synced: about 10 hours ago
JSON representation
A ecommerce build with Next 13
- Host: GitHub
- URL: https://github.com/imnotannamaria/next-13-ecommerce-devstore
- Owner: imnotannamaria
- Created: 2023-10-27T16:59:15.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-31T17:04:30.000Z (about 1 year ago)
- Last Synced: 2023-10-31T23:32:02.891Z (about 1 year ago)
- Topics: nextjs, nextjs13, react
- Language: TypeScript
- Homepage: https://next-13-ecommerce-devstore.vercel.app/
- Size: 7.46 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```## Cache & Memorization
### Cache
Refers to the temporary storage of data to reduce the need to recalculate or retrieve that data repeatedly. It helps improve performance and efficiency, allowing pages to load faster.
### Memorization
refers to the technique of caching the results of costly computations to avoid recalculating the same values in the future. This results in faster response time and better system efficiency, as repetitive queries or complex operations can be served quickly from the cache.