Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muhammadaziz01-dev/online_course_user
online IT courses user panel
https://github.com/muhammadaziz01-dev/online_course_user
ant-design javascript js-cookie npm-package react react-router-dom scss tailwindcss typescript vite zustand
Last synced: about 1 month ago
JSON representation
online IT courses user panel
- Host: GitHub
- URL: https://github.com/muhammadaziz01-dev/online_course_user
- Owner: muhammadaziz01-dev
- Created: 2024-08-09T10:04:37.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-10T13:38:11.000Z (5 months ago)
- Last Synced: 2024-08-19T10:08:06.465Z (5 months ago)
- Topics: ant-design, javascript, js-cookie, npm-package, react, react-router-dom, scss, tailwindcss, typescript, vite, zustand
- Language: TypeScript
- Homepage: https://online-course-user.vercel.app
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React + TypeScript + Vite
## Happy coding : )# Main
- Try to keep pages server component;
- Use BEM
- Use FC generic for Component
- Use the same node version (v20.9.0)# Imports order
- Next components and utils
- React
- Third libraries
- React components
- Utils
- Style# Pages
- Pages are stored in the app folder
- Naming -> CategoriesPage, CategoryPage
# Files
File naming is `kebab-case`
- User.jsx => bad
- user.jsx => good
- loginCard.jsx => bad
- LoginCard.jsx => bad
- login-card.jsx => good# Components
- Creating component
```
modal
index.tsx
style.scsscard
index.tsx
style.scss
```
- Component naming is PascalCase```
```
- Component is made without margin# Hooks
Hooks naming is camelCase
```
useFetch
```# Variables
Sass folder -> variables.scss
## Expanding the ESLint configuration
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level `parserOptions` property like this:
```js
export default {
// other rules...
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},
}
```- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list