i18next / i18next-http-backend

i18next-http-backend is a backend layer for i18next using in Node.js, in the browser and for Deno.
MIT License
454 stars 71 forks source link

Does this library support python as backend ? #32

Closed ahmedosama5200 closed 4 years ago

ahmedosama5200 commented 4 years ago

I know this is not a place for questions but I am really confused about what this library really does and I can't understand even after going through the documentation. I am not using nodejs in the backend. Do I still need it ?

adrai commented 4 years ago

You can use this library for example to connect from a browser (javascript) to a http api (this an be in any language, as long as it fulfills the api)

ahmedosama5200 commented 4 years ago

Thank you for replying. What's the advantage of keeping translation files in my backend ? I could just leave them in the frontend and load them using webpack code splitting. Does that make sense ?

adrai commented 4 years ago

It's your choice...

You could update your translations without redeploying your frontend for example... like here: https://youtu.be/9NOzJhgmyQE

ahmedosama5200 commented 4 years ago

Thank you so much. I get it now.