Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/masoudnick/twitter
Twitter Clone Created with Reactjs, Typescript and Tailwind CSS
https://github.com/masoudnick/twitter
reactjs tailwind twitter typescript
Last synced: 20 days ago
JSON representation
Twitter Clone Created with Reactjs, Typescript and Tailwind CSS
- Host: GitHub
- URL: https://github.com/masoudnick/twitter
- Owner: masoudnick
- Created: 2022-09-27T08:27:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-10T19:18:04.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T00:01:59.880Z (almost 2 years ago)
- Topics: reactjs, tailwind, twitter, typescript
- Language: TypeScript
- Homepage:
- Size: 906 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# An Twitter Clone Created with Reactjs, Typescript and Tailwind CSS
## About This Project
This project is a clone of the Twitter web app.
It's built using Typescript, React, React libraries (react-router-dom, axios), Tailwind CSS.## Installation - Development
In order to setup the project you'll need to the following steps :
### 1. Clone repo
> Clone this repo to your local machine using following command :
```shell
git clone https://github.com/masoudnick/Twitter.git
```### 2. Setup development server
> Install npm dependencies using following command :
```shell
cd Twitter && yarn install
```> Run development server using following command :
```shell
yarn run dev
```> Runs the app with opening [http://localhost:5173](http://localhost:5173) in the browser.
### 3. Setup json server
> Run json server using following command, then the server runs at [http://localhost:8000](http://localhost:8000)
```shell
json-server --watch server/db.json --port 8000
```