I created an alternative for producthunt which is NextGen Tools . You can launch your apps here to get support from community members. You can also get promoted if you get included in the top 3 of the week. I'll promote your app on my tiktok (with 40k+ followers) and youtube page. You can also embed the badge for social proof to increase trust with your users. Here is the link: https://nxgntools.com
Creating your own WALL-E First of all to introduce you to what nodejs can do, we will start with a small project and use an available third party library named Say.js for our text-to-speech program. With this you can build your own WALL-E. First let's install the libraries we need for this project: npm i --save say npm i --save lodash Let's import them using: const say = require('say'); const _ = require('lodash'); let's try if the say library is working by making the computer say Hello World (literally of course!!!) say.speak('Hello World'); 😮 It does work right? Now remove that line and let's create something like a speech logger so that everything we ex'ed on our todo list, the computer will let us know by telling it to us loud and clear using the say library: What this does is we wrapped our say.speak in a promise so that everytime we call the logger the computer will stop and ...