Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kevinjanbarluado/ecommerce-next-tailwind
- Owner: kevinjanbarluado
- Created: 2024-05-17T18:41:00.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-18T03:15:07.000Z (9 months ago)
- Last Synced: 2024-10-31T06:52:08.962Z (3 months ago)
- Topics: javascript, localstorage, nextjs14, react, tailwindcss
- Language: JavaScript
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```