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
How to destroy node.js in 60 seconds with deno.js Hello guys, Noobie programmer here!!! Today I will teach you how to destroy node.js in 60 seconds with deno.js which is another Javascript runtime (though you can use Typescript in it. And also, a little trivia before we start: DENO is short fo DEstroy NOde hence the name. If you want the video version it is here: https://youtu.be/tG9EMTlE-Uk Install Deno First and foremost let's go to the website of the deno.js: https://deno.land/ . We need to install deno first and it's written in the website see the code below. For mac/ubuntu users: curl -fsSL https://deno.land/x/install/install.sh | sh For window users: open a powershell and type the code below: iwr https://deno.land/x/install/install.ps1 -useb | iex Destroy node Let's start by running this one line of code: deno run https://deno.land/std/examples/welcome.ts As you can see with deno we can run scripts saved on a remote location and this is a very big plus since we d...