All Projects → harryho → React Crm

harryho / React Crm

Licence: mit
A reusable CRM project for real-world business based on React 16, Redux & Material-UI 4

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to React Crm

react-you-do-you
How I use React + Redux + Material-UI + TypeScript – you do you 💖
Stars: ✭ 103 (-66.45%)
Mutual labels:  material-ui, react-redux, storybook
Storybook Addon Material Ui
Addon for storybook wich wrap material-ui components into MuiThemeProvider. 📃 This helps and simplifies development of material-ui based components.
Stars: ✭ 513 (+67.1%)
Mutual labels:  material-ui, storybook
React Social Network
Simple React Social Network
Stars: ✭ 409 (+33.22%)
Mutual labels:  material-ui, react-redux
Storybook Addon
Develop themable components with Emotion/Styled Components/Material-UI with help of Storybook & React Theming
Stars: ✭ 122 (-60.26%)
Mutual labels:  material-ui, storybook
best-of-react
🏆 A ranked list of awesome React open-source libraries and tools. Updated weekly.
Stars: ✭ 364 (+18.57%)
Mutual labels:  material-ui, react-redux
admin-template-for-react
🌏 Admin template for React, React Redux, Redux Saga, React Router, i18n and integrated OAuth login
Stars: ✭ 83 (-72.96%)
Mutual labels:  material-ui, react-redux
PERN-Advanced-Starter
Advanced PERN stack starter kit (PostgresSQL, Express, React, & Node), complete with ESLint, Webpack 4, Redux, React-Router, and Material-UI kit.
Stars: ✭ 51 (-83.39%)
Mutual labels:  material-ui, react-redux
react-redux-starter-kit
Get started with React, Redux, Webpack and eslint
Stars: ✭ 29 (-90.55%)
Mutual labels:  material-ui, react-redux
create-material-ui-app
create-react-app + storybook + storybook-addon-material-ui
Stars: ✭ 55 (-82.08%)
Mutual labels:  material-ui, storybook
material-ui-responsive-drawer
Material-UI responsive Drawer is a React-Redux component that uses Material-UI to create a responsive Drawer.
Stars: ✭ 44 (-85.67%)
Mutual labels:  material-ui, react-redux
react-movies-finder
React Movies finder is a React app to search movies and series using redux, redux-thunk, React Hooks, and Material UI
Stars: ✭ 27 (-91.21%)
Mutual labels:  material-ui, react-redux
Mdi Material Ui
Material-UI SvgIcon components for Material Design Icons.
Stars: ✭ 276 (-10.1%)
Mutual labels:  material-ui
Alduin
[DISCONTINUED] An RSS, Atom and JSON feed aggregator available on Windows and Linux.
Stars: ✭ 272 (-11.4%)
Mutual labels:  react-redux
Carbon
Material Design implementation for Android 4.0+. Shadows, ripples, vectors, fonts, animations, widgets, rounded corners and more.
Stars: ✭ 2,942 (+858.31%)
Mutual labels:  material-ui
Sequent
A simple continuous animation library for Android UI.
Stars: ✭ 263 (-14.33%)
Mutual labels:  material-ui
Googlekeepclone
A clone of Google Keep with its original Material Design aesthetics
Stars: ✭ 281 (-8.47%)
Mutual labels:  material-ui
Quickbill
Create unlimited invoices for free.
Stars: ✭ 278 (-9.45%)
Mutual labels:  react-redux
Postgui
A React web application to query and share any PostgreSQL database.
Stars: ✭ 260 (-15.31%)
Mutual labels:  material-ui
Shaark
Self-hosted platform to keep and share your content: web links, posts, passwords and pictures.
Stars: ✭ 258 (-15.96%)
Mutual labels:  storybook
Material Ui Superselectfield
multiselection autocomplete dropdown component for Material-UI
Stars: ✭ 260 (-15.31%)
Mutual labels:  material-ui

React Redux CRM

A reusable CRM project for real-world business based on React 16, React-Redux & Material-UI 4

This is the very first version, feel free to use for any app. Contributions are always welcome!

The goal of this starter project is to create reusable project for real-world business. To achieve this target, we need a solution which should include simple authentication process, restful API with token support and simple but elegant UI design.

Features

  • This project is built on the top of React/Redux.
  • The UI component are mainly built on Material-UI.
  • This project uses Redux-Thunk to support back-end API.
  • The backend API is just readonly dump service.
  • Use Formik to manage the form submission
  • Integrate with storybook for react.
  • The project is built on TypeScript 3.x
  • Use Formsy to manage form submission
  • To simulate real-world business, this starter project chooses Json-Server as fake Restful API. (You can simple replace it with your own API)

Live Demo

Demo The demo is just a proof of concept. It doesn't have back-end API and all features of master branch.

Screenshots

Screenshot1

Screenshot2

Screenshot3


Storybook

Screenshot4

Build Setup

# Clone project
git clone https://github.com/harryho/react-crm.git


# install the packages with npm
cd react-crm
npm install

# start the server with hot reload at localhost:4000
npm start
# or yarn
yarn start

# Storybook
## Start storybook
npm run storybook
## Build storybook
npm run build-storybook

## build for production
npm run build

Docker

## Run / Test release without building new image
npm run build

# Launch nginx image to test latest release
docker pull nginx:alpine
docker run -p 8080:80 -v \
    <your_aboslute_path>/dist:/usr/share/nginx/html nginx:alpine


# Build release image
docker build . -t  rc-prd:2.0

# Launch the development image in the backgroud
docker run -d --publish 8080:80  --name rc2 rc-prd:2.0

# Check the log
docker logs rc2  -f

Welcome to fork or clone

For detailed explanation on how things work, checkout following links please.

Alternatives

There are another two similar projects respectively built on the Vue.js and Angular. If you have interests in those technical stacks. You can find and clone those repositories below.

Change log

  • May 2020 - Merge the branch rctsx to master

    After the merge, the whole project moved to new techncial stack - TypeScript 3. Also, the Material-UI is upgraded to 4.x version.

  • Dec 2018 - Rebase demo branch to master

    New master doesn't rely on Json-Server as fake API. It will only have Readonly fake API. It means any new or updated data will be stored to any physical file. All test data will be rolled back after system restart.

  • May 2018 - Create an archived branch json-server

    This branch was the master which used Json-Server as fake API. Considering the hiccup of setting Json-Server up and maintenance, it will be replaced by fake service ( Readonly fake API). You still can find clone this branch by branch name json-server, but it will be no longer updated. It is an archived branch.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].