From Unfinished to Deployed: Building AutoFlow
Sahil Mane has completed a project called AutoFlow, a stock market automation platform. The platform was developed using React, Node.js, MongoDB, and n8n, and includes features like paper trading and portfolio tracking. Mane's experience with GitHub Copilot significantly aided in debugging and deployment, emphasizing the importance of completing projects.
- ▪AutoFlow is a stock market automation platform built with React, Node.js, MongoDB, and n8n.
- ▪The platform includes features such as paper trading, portfolio tracking, and stock sentiment monitoring.
- ▪Sahil Mane utilized GitHub Copilot to assist with debugging and deployment issues during the project.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3864362) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Sahil Mane Posted on Jun 3 From Unfinished to Deployed: Building AutoFlow #devchallenge #githubchallenge #webdev #react GitHub “Finish-Up-A-Thon” Challenge Submission This is a submission for the GitHub Finish-Up-A-Thon Challenge What I Built I finally completed a project that had been sitting unfinished for months. AutoFlow is a stock market automation platform built with React, Node.js, MongoDB, and n8n.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).