Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bearury/ecommerce_application
- Owner: bearury
- Created: 2024-04-30T06:23:35.000Z (9 months ago)
- Default Branch: develop
- Last Pushed: 2024-06-21T14:41:25.000Z (7 months ago)
- Last Synced: 2024-12-17T07:22:12.692Z (about 1 month ago)
- Topics: tailwindcss, typescript, zustand
- Language: TypeScript
- Homepage:
- Size: 739 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
```