I need to build a web based video player. Something like coursera/udemy. I would like to know the following. Where we can store videos (Blob,Db..etc)? Say I uploaded video in Blob storage. How can I make sure nobody is able to download this videos? What should be an ideal video streaming architecture(BE+FE) if I am expecting 500 concurrent users? Do
Tag: architecture
Can I write my typeorm entities in typescript while having my app writed in javascript?
I found it way more intuitive to write typeorm entities in typescript format, however my whole app is indeed in javascript. I know those languages are compiling the same way, but will It cause any kind of problems to do so ? Thanks. Answer It won’t, if you enable the “allowJs”: true flag in the tsconfig.json, and always compile the