bharry29
bharry29

Reputation: 61

How do I build a web app with a proper ui for my EOS.IO app?

I want to build a browser-based user interface for eos d-app that allows the user to perform various actions like:

Input a text string to eos app Check wallet balance and activities transfer tokens to another person

I've seen a lot of different options (Node.js, webassembly, etc..) but I'm not sure which language or package to use in my eos d-app that is written in .cpp

Upvotes: 0

Views: 287

Answers (2)

polux
polux

Reputation: 98

You could use EOSIO team javascript general purpose library, and integrate it with any js framework your projects requires or you are best accustomed to - https://github.com/EOSIO/eosjs. Also, there is another project you might be interested in - https://get-scatter.com/ ( I would add this as comment on @Nikos comment, but I don't have enough reputation )

Upvotes: 1

Web Assembly is used in order to run a smart-contract from the blockchain. (Keep in mind that you cpp file is executed as a wasm file.)

About your gui i think that nodejs is the best option by far due to easy integrating of EOS with Nodejs

You can check this: Integrating EOS with Nodejs

Upvotes: 0

Related Questions