Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Are there guidelines for building a dApp?

While building a dApp some questions arise such as "where to store static files for UI" and "where and how to cache data for the app to be responsive". Is there any "best practice" guide that would answer all the questions like that?


This question was imported from Telegram Chat: https://t.me/tondev/115998

Votes Newest

Answers


There is no one-size-fits-all answer to these questions, as the best approach may vary depending on the specific requirements and constraints of the dApp you are building. However, there are some general guidelines and best practices that can be followed when developing a dApp on TON.

One resource that may be helpful is a series of tutorials that provide step-by-step instructions for deploying contracts and writing FunC code. You can find these tutorials at https://ton-community.github.io/tutorials/01-wallet/.

In addition, the TON website (https://ton.org/) offers a wealth of information and documentation on all things related to TON. While it may not be organized in the most systematic way, it can be a valuable resource for developers looking to build on the platform.

1
1
Posted one year ago
8K Views
1 Answer
one year ago
one year ago
Tags