Skip to content

vincelawdev/Customers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Customers

Search form that queries the Customer Server.

This project was forked from Company, which was bootstrapped with Create React App.

The directory structure follows a similar style to React Boilerplate's directory structure.

Redux Toolkit was used to simplify the Redux setup process.

React Hooks and Redux Hooks were used to simplify the Redux binding code and promote the use of functional components over class components.

List of Customers

Installation

Git clone this repository and run the following command.

yarn install or npm install

This project's packages were added with yarn and there is a yarn.lock file.

Available Scripts

In the project directory, you can run the following scripts.

Local Environment

yarn start or npm start

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.

Unit Testing

yarn test or npm run test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

yarn test:coverage or npm run test:coverage

Generates a test coverage report in the coverage folder.

Builds

yarn build or npm run build

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.

Linting

yarn lint:js or npm run lint:js

Runs ESLint on all Javascript files in the src folder.

yarn lint:js:fix or npm run lint:js:fix

Runs ESLint automatic fixer on all Javascript files in the src folder.

yarn lint:css or npm run lint:css

Runs stylelint on all files in the src folder.

yarn lint:css:fix or npm run lint:css:fix

Runs stylelint automatic fixer on all files in the src folder.