Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bearury/ecommerce_application

Final Project JavaScript/Front-end 2023Q4
https://github.com/bearury/ecommerce_application

tailwindcss typescript zustand

Last synced: about 1 month ago
JSON representation

Final Project JavaScript/Front-end 2023Q4

Awesome Lists containing this project

README

        

# eCommerce_Application

## Final Project JavaScript/Front-end 2023Q4

This is a learning project of the RSSchool platform. The application is an online store. The stack used:
- bundler - vite
- typescript
- tests - vitest
- sass/tailwindcss
- state manager - zustand
- eslint, prettier, husky

### Start on development in the project

1. Clone this repository

```cmd
git clone https://github.com/webjsmaster/eCommerce_Application.git
```

2. Install dependencies

```cmd
yarn
```

3. Start

```cmd
yarn dev
```

### Useful scripts

1. For identification of coding style issues and potential errors

```cmd
yarn lint
```

2. For fix errors

```cmd
yarn lint:fix
```

3. For checking issues of coding style

```cmd
yarn ci:format
```

4. For code formatting and ensuring uniform code style

```cmd
yarn format
```

5. For run tests
```cmd
yarn test
```