Quick Start
We would need do deploy one lambda for the web-chat to work.
Deploying Lambda
Tutorial section to learn about deploying the required lambda function.
And you'll only need access to the npm packages.
@neev/web-chat-api
: Framework independent JS functions and classes.@neev/web-chat-react
: React hooks and Material UI components.@neev/logger
: Logging module.
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/web-chat-api @neev/web-chat-react @neev/logger @emotion/react @emotion/styled @mui/icons-material @mui/material @mui/system @mui/lab
Only react hooks
yarn add @neev/web-chat-api @neev/web-chat-react @neev/logger
Installing in a non-react project
yarn add @neev/web-chat-api @neev/logger
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.