Mukesh
Mukesh
Use the SDK @chat-e2ee/service and build a minimalistic UI https://github.com/muke1908/chat-e2ee/tree/master/service Scope of this task: - Create a separate folder for the client. - Create the project (typescript + any UI...
Extend the method await chatInstance.encrypt('some message').send(); and give user an option to send files. https://github.com/muke1908/chat-e2ee/blob/master/service/README.md#3-send-message
Create a fiddle using @chat-e2ee/service package to demonstrate basic functionalities. use `@chat-e2ee/[email protected]` https://github.com/muke1908/chat-e2ee/tree/master/service
ChatE2EE class should be covered by Unit Test https://github.com/muke1908/chat-e2ee/blob/master/service/src/sdk.ts
Convert image to base64 and send it by calling `await chatInstance.encrypt('some message').send();` https://github.com/muke1908/chat-e2ee/blob/master/service/README.md#3-send-message
Set up a basic webrtc support to front-end to support audio/video call.
Mock 'socket.io-client' library and write unit test. https://github.com/muke1908/chat-e2ee/blob/master/service/src/socket/socket.ts
Is there any way to set status code to response like we can do in express app? `res.status(500).send(data)`