You are viewing a single comment's thread from:

RE: 4 things to know before starting developing apps on STEEM blockchain

in #steem7 years ago

I'm much more comfortable with Python. Would you suggest using Node anyway? I'm sure Python would be fine for a bot or something, but I'm not sure if it's solid enough to do something like a full site on.

Sort:  

Of course, its solid. :) just make sure you use a hybrid model with js. Ex: if you want to just show user reputation, use steemjs on client side. (Browser) It feels much faster since it doesnt block the webserver process and response times. (doing a steemd call at backend blocks the server process).

A hybrid model with steemjs (on client side) and python for background (ex: custom apis of the dapps) works well.