Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ronhedwigzape/vue-aliexpress-clone
Nuxt Supabase Clone of Aliexpress
https://github.com/ronhedwigzape/vue-aliexpress-clone
Last synced: 5 days ago
JSON representation
Nuxt Supabase Clone of Aliexpress
- Host: GitHub
- URL: https://github.com/ronhedwigzape/vue-aliexpress-clone
- Owner: ronhedwigzape
- License: apache-2.0
- Created: 2023-08-03T12:29:03.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-02T09:41:44.000Z (about 1 year ago)
- Last Synced: 2023-11-02T10:39:20.392Z (about 1 year ago)
- Language: Vue
- Homepage:
- Size: 409 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AliExpress Clone using Vue
This project is a clone of the popular e-commerce platform, AliExpress. It's built using [Nuxt.js](https://nuxt.com/), a powerful [Vue.js](https://vuejs.org/) framework that allows for server-side rendering and generating static websites.
## App Preview (Dev Mode)
The image above provides a preview of the application in development mode.
## Prerequisites
Before you begin, ensure you have met the following requirements:
- You have installed [Node.js](https://nodejs.org/en) and npm/yarn/pnpm on your local machine.
- You have a basic understanding of [JavaScript](https://developer.mozilla.org/en-US/docs/Web/javascript) and [Vue.js](https://vuejs.org/).## Setup
First, clone the repository to your local machine:
```bash
git clone https://github.com/ronhedwigzape/vue-aliexpress-clone
```Navigate to the project directory:
```bash
cd vue-aliexpress-clone
```Install the necessary dependencies:
```bash
# If you're using npm:
npm install# If you're using pnpm:
pnpm install# If you're using yarn:
yarn install
```## Development Server
To start the development server on `http://localhost:3000`, run:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev
```Your application should now be running on `http://localhost:3000`.
## Production
To build the application for production, run:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build
```This will create a `dist` directory with everything you need to deploy your application.
To locally preview the production build, run:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview
```Your built application should now be running on `http://localhost:5000`.
For more information on deploying your application, check out the [Nuxt.js deployment documentation](https://nuxt.com/docs/getting-started/deployment).