Pluralsight Admin App is a simple application built using React and Redux (while learning React and Redux from Cory House, Pluralsight). It uses a mock API to enable an admin to create and manage pluralsight courses.
The application uses Redux
to manage app-wide application state.
- Display a list of courses
- Ability to create a new course
- Ability to modify an existing course
- Ability to delete courses
- Form input validation
- Display notifications to the user
Node
React
Redux
Webpack
Babel (ES2015)
Ensure Node
is installed on your machine.
- Clone the application
git clone https://github.com/raphaelakpan/psadmin-react.git
- Change directory into the folder
cd psadmin-react
- Install dependencies
npm install
- Run the applicaiton
npm start
- Navigate to
http://localhost:3000
to play around with the application
Raphael Akpan