For development, you will only need Node.js installed on your environement. And please use the appropriate Editorconfig plugin for your Editor (not mandatory).
node > 12.0
npm >= 1.00
const scrollToBottom = () => { | |
window.scrollTo({ top: document.body.scrollHeight }); | |
}; | |
const sleep = (ms) => { | |
return new Promise((resolve) => setTimeout(resolve, ms)); | |
}; | |
const obtainTweets = () => { | |
return document.querySelectorAll("[data-testid='tweet']"); |
For development, you will only need Node.js installed on your environement. And please use the appropriate Editorconfig plugin for your Editor (not mandatory).
node > 12.0
npm >= 1.00