Quick Start
Currently no backend or infrastructure resources are needed to implement the Neev based Connect Control Panel.
You'll only need access to the npm packages.
@neev/ccp-api
: Framework independent JS functions and classes.@neev/ccp-react
: React hooks and Material UI components.@neev/logger
: Logging module.@neev/patch-streams (optional)
: Adds missing types in amazon-connect-streams package.
Using Starters
We have a few starters available for you quickly up and running. You can use them
to skip all the configurations required.
Select a starter.
Or you can start from scratch using the following steps.
Installing in a react project
Make sure you have access to the neev
repository.
How do I access neev repository?
With Material UI components
yarn add @neev/ccp-api @neev/ccp-react @neev/logger @emotion/react @emotion/styled @mui/icons-material @mui/material @mui/system @mui/lab amazon-connect-chatjs amazon-connect-streams amazon-connect-taskjs
Only react hooks
yarn add @neev/ccp-api @neev/ccp-react @neev/logger amazon-connect-chatjs amazon-connect-streams amazon-connect-taskjs
Installing in a non-react project
yarn add @neev/ccp-api @neev/logger amazon-connect-chatjs amazon-connect-streams amazon-connect-taskjs
Next Steps
Next follow our reference implementation to learn how we use these packages or head over to the next tutorial section for a more gentle introduction.