Run JS Alternative: Create your own scratchpad for javascript
I used to love RunJs when it was free for use ๐
But now, It is charging for even to write your code in RunJs, the creator implemented a timer which blocks you from writing any code for some time. ๐
Luckily, VsCode has everything, even a lot more that it offers.
Why not use VsCode?
npm init -y
touch index.js
npm install nodemon
Let's add Debugger, cool ๐
- Click on the debugger icon on left
- Click on add
launch.json
- Paste below setting
Done! bye bye RunJs.{ "version": "0.2.0", "configurations": [ { "type": "node-terminal", "name": "Debug Mode", "request": "launch", "command": "npm start", "cwd": "${workspaceFolder}" } ] }