Skip to content

Hacker UI made in React Hooks, Redux, Redux-Persist, Redux-Saga, and @reduxjs/toolkit

Notifications You must be signed in to change notification settings

bhattaraib58/hackernews-ui

Repository files navigation


Hackernews UI

Hackernews UI is an web application made in React.js using Hooks API. It is created with Redux, Redux-Persist, Redux-Saga, and @reduxjs/toolkit.

The whole project uses custom css without using any CSS Library.

Setup

Clone the repository

# Clone with SSH
$ git clone [email protected]:bhattaraib58/hackernews-ui.git

# Or with HTTPS
$ git clone https://github.com/bhattaraib58/hackernews-ui.git

Prerequisites

File structure

src/
├── appConfig.js   => represents app system wide configuration
├── assets/        => represents images and global styles
├── components/    => all react components
├── constants/     => constant data
├── services/      => http request services
└── utils/         => helper functions

Install dependencies

# Using npm
$ npm install

# Or using yarn
$ yarn

Note: This project uses yarn as main package manager.

Practices Involved in development:

  1. The app should uses react (use Hooks API and hook pattern).

  2. For css styling

    We use CSS Modules in React to handle styling, use this guide for more info https://programmingwithmosh.com/react/css-modules-react/

For Development

# Using npm
$ npm start

# Or using yarn
$ yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

For Production Build

# Using npm
$ npm run build
$ npx serve -s build

# Or using yarn
$ yarn build
$ npx serve -s build

Builds the production optimized app to the build folder.
Your app is ready to be deployed!

Contributing

Read our CONTRIBUTING GUIDE to learn about our development process, how to propose bugs and improvements.

License

Licensed under The License.