Decoding issue with AES 128 in web browser

Hello, I’m developing a web game using nakama-js. I’m looking to add a feature that requests account information from the server through the client (browser). The server encrypts the account information using AES-128 with the key received from the client and responds back. I’ve implemented this part, but I’m having trouble decrypting the ciphertext received from the server on the client side. After checking the server-side code, it seems like the encryption is done with AES-128-CFB, but I’m struggling to decode it using JavaScript. Is there a way to decrypt the ciphertext received from the web?