- React
- Redux using redux toolkit
- Styled Components
- Cypress
- Fetch API
- The web uses are very trivial signin/register functionality to demonstrate the ability to post/edit/reply to threads based on the user
- GitHub Actions for running the test cases post commit on "main" branch (https://github.com/samrat-ghosh-13/chatroom/actions)
- Deployment using vercel at https://chatroom-tau.vercel.app/ (using deploy branch - https://github.com/samrat-ghosh-13/chatroom/tree/deploy) and fake JSON Server is hosted at "https://my-json-server.typicode.com/samrat-ghosh-13/json-server/". Use any user from db.json file, the changes are not persisted as JSON Server cannot accomodate that
In the project directory, you can run:
use yarn start
and yarn server
in two different terminal windows.
use yarn start
and yarn server
in two different terminal windows and -
yarn test
for running the tests in terminalyarn test:headless
for running the tests in headless browseryarn test:e2e
for running the End to End test cases
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
use yarn server to start the Fake JSON Server to fetch the data from the API Endpoints, which in turn fetch data from db.json
Runs the JSON server in the development mode.
Open http://localhost:8000 to view it in the browser.
use yarn test to do unit testing of the components and the reducers using cypress.io
use yarn test:e2e to do end to end testing using cypress.io
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
- A client can create a new public message thread (post signin)
- A client can add a public reply to a message thread (post signin)
- A client can modify their own messages (post signin)
- A client can delete their own messages (post signin)
- Public message threads and replies are viewable (post signin)
- A client can sign in or register
Web vitals of the application in Desktop and mobile -
Desktop -
Mobile -
- using color variables
- using margin, spacing variables
- using constants to store the static texts, that can support multiple languages