https://github.com/thenameiswiiwin/bookshelf
This is a React + Vite app to be used with Tailwindcss.
https://github.com/thenameiswiiwin/bookshelf
Last synced: 3 months ago
JSON representation
This is a React + Vite app to be used with Tailwindcss.
- Host: GitHub
- URL: https://github.com/thenameiswiiwin/bookshelf
- Owner: thenameiswiiwin
- Created: 2022-10-26T19:45:11.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-03T08:12:56.000Z (almost 3 years ago)
- Last Synced: 2025-03-15T09:20:59.933Z (7 months ago)
- Language: TypeScript
- Homepage:
- Size: 463 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Tailwindcss Application build with Vite
This is a [ReactJS](https://reactjs.org) + [Vite](https://vitejs.dev) application to be used with [Tailwindcss](https://tailwindcss.com).
## What is inside?
This project uses many tools like:
- [ReactJS](https://reactjs.org)
- [Vite](https://vitejs.dev)
- [TypeScript](https://www.typescriptlang.org)
- [Jest](https://jestjs.io)
- [Testing Library](https://testing-library.com)
- [Tailwindcss](https://tailwindcss.com)
- [Eslint](https://eslint.org)
- [Prettier](https://prettier.io)
- [ReachUI](https://reach.tech/)API:
- [Google Books APIs](https://developers.google.com/books)## Getting Started
### System Requirements
- [git][git] v2.13 or greater
- [NodeJS][node] `14.10+ || 16+`
- [npm][npm] v6 or greater || [yarn][yarn]All of these must be available in your `PATH`. To verify things are set up
properly, you can run this:```bash
git --version
node --version
yarn --version || npm --version
```### Setup
Clone the project.
```bash
git clone https://github.com/thenameiswiiwin/bookshelf.git
```Access the project directory.
```bash
cd bookshelf
```Install dependencies.
```bash
yarn || npm install
```Serve with hot reload at .
```bash
yarn dev || npm run dev
```### Lint
```bash
yarn lint || npm run lint
```### Build
```bash
yarn build || npm run build
```### Test
```bash
yarn test || npm run test
```