Incomplete Functionality and Comments
This is a simple application that displays a list of documents just like an explorer in your code editor.
- Displays a file type, name and the date added
- Emojis indicating file type and folders
- Keyboard support (a11y, yay!)
- You can have unlimited number of nested folders, and you can open them all!
- Recursive search that allows you to search for files. Even when they are deeply nested, we will find them
It uses the following technologies
- React - Frontend Framework
- Vite - A build tool for frontend frameworks (and not only!)
- tailwindCSS — for CSS
- Vitest - A modern testing framework
- React Testing Library - A testing framework for React components
You can clone this repo by clicking the code button in the top right corner of this respository.
git clone https://github.com/oskar-dragon/bright-hr.git
cd bright-hr
npm i install
npm run build
- Build the application. Useful if you want to deploy your appnpm run dev
- Run application in dev modenpm run lint
- Lint all packagesnpm run format
- Formats code using Prettiernpm run test
- runsvitest
andReact Testing Library
testsnpm run test:coverage
- Runsvitest
and provides coverage report for utilities and helpersnpm run typescript:check
- Runs typescript to do type checking