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.
# Clone with SSH
$ git clone [email protected]:bhattaraib58/hackernews-ui.git
# Or with HTTPS
$ git clone https://github.com/bhattaraib58/hackernews-ui.git
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
# Using npm
$ npm install
# Or using yarn
$ yarn
Note: This project uses yarn as main package manager.
-
The app should uses react (use Hooks API and hook pattern).
- Building Your Own Hooks - https://reactjs.org/docs/hooks-custom.html
- React Redux Hooks API - https://react-redux.js.org/api/hooks
-
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/
# 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.
# 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!
Read our CONTRIBUTING GUIDE to learn about our development process, how to propose bugs and improvements.
Licensed under The License.