This project is a boilerplate for rapid development on top of the steem network. This project is a starting point and is not intended to be feature complete or na off-the-self app.
This boilerplate includes.
- Authenticate with SteemConnect/Logout
- Trending + Latest post feeds
- @username profile Page
- @username Transfers Page
- Logged-In user 'my blog' feed
- Create Top Level Post
- Upvote Top Level Post
- Single Page for posts + Comments Thread
- install node.js & NPM - https://nodejs.org/en/
- clone repo
- Go to https://v2.steemconnect.com/dashboard and create a new app, it currently costs 3 STEEM.
- add the Redirect URI - http://localhost:3000/auth/
- open
config.example.js
and rename toconfig.js
enter yourclient_id
from steemconnect and redirect uri to 'http://localhost:3000/auth/', update the session secret to a new secure random string - npm install // to download dependencies
- npm start // run the project on default port 3000
- navigate to localhost:3000 in your browser
- click on the blue 'login with steemconnect to authenticate your app'
I recommend incorporating your package manager of choice and bundling these together for production.
The included css and use of bootstrap is intended to be as minimal as possible and only to help demonstrate the completed features. You should restructure the examples using your framework or styling methodology of choice. Refraining from building completely on-top of a framework keeps this project open to as many users as possible.
Yes. You'll notice many of the API calls are fired from a page specific tag on the <main>
element. This is to demonstrate which views need which information from the STEEM api and not necessarily the design pattern you have to follow.
When making calls to the STEEM API you will need to additional filter by your specific tag. e.g
function getTrending(query, initial){
steem.api.getDiscussionsByTrending(query, (err, result) => {
if (err) return console.log(err);
result = result.filter(post => post.parent_permlink === 'review')
displayContent(result,initial)
getaccounts(result.map(post => post.author))
});
}
Note you will need to query the steem API for many more posts depending on the frequency of your tags appearance.
Many apps opt to maintain their own database for a reference to posts created on their platforms specifically. Alternatively you can check the custom JSON data associated with posts. (/routes/post.js) You'll notice we are specifying the custom data 'boilerplate.app'
this can be checked when querying STEEM API as with the Tag example above. This second option is not bulletproof and people could submit posts via tools like steem.js with your app name easily.