Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kevinjanbarluado/ecommerce-next-tailwind

Next.js E-commerce: Managing disc inventory using tailwind and store in local storage.
https://github.com/kevinjanbarluado/ecommerce-next-tailwind

javascript localstorage nextjs14 react tailwindcss

Last synced: 13 days ago
JSON representation

Next.js E-commerce: Managing disc inventory using tailwind and store in local storage.

Awesome Lists containing this project

README

        

## Site: https://nextjs-ecommerce-tailwind.netlify.app/

# Ecommerce Application using NextJS and Tailwind

An e-commerce application, built with Next.js and Tailwind CSS, offers a user-friendly product catalog with sorting, filtering, and local storage for data persistence.

## Requirements
- Node.js 18.17 or later.
- macOS, Windows (including WSL), and Linux are supported.

## Installation
1. Clone the Repository
First, clone the repository from GitHub to your local machine. Replace your-repo-url with the actual URL of the GitHub repository you want to clone.
```bash
git clone https://github.com/kevinjanbarluado2/ecommerce-next-tailwind.git
cd ecommerce-next-tailwind.git
```
2. Install Dependencies
Once inside the project directory, install the required dependencies. You can use either npm or yarn:
```bash
npm install
```
3. Run the Development Server
After setting up the environment variables, start the development server. This will run your Next.js application locally.
Using npm:
```bash
npm run dev
```

Or using yarn:
```bash
yarn dev
```
4. Start the production server:
Using npm:
```bash
npm start
```

Or using yarn:
```bash
yarn start
```