Explore and experiment with JavaScript and TypeScript, visualise your ideas and get instant feedback as you type.
https://runjs.app/
RunJS - the JavaScript playground for your desktop
Moderator: Forum moderators
- puppy_apprentice
- Posts: 694
- Joined: Tue Oct 06, 2020 8:43 pm
- Location: land of bigos and schabowy ;)
- Has thanked: 5 times
- Been thanked: 116 times
RunJS - the JavaScript playground for your desktop
- rockedge
- Site Admin
- Posts: 7021
- Joined: Mon Dec 02, 2019 1:38 am
- Location: Connecticut,U.S.A.
- Has thanked: 3147 times
- Been thanked: 2933 times
- Contact:
Re: RunJS - the JavaScript playground for your desktop
This looks interesting for testing code
needed to add run-as-spot
to the runjs.desktop file for RunJS to start!
Code: Select all
[Desktop Entry]
Name=RunJS as spot
Exec=run-as-spot /opt/RunJS/runjs
Terminal=false
Type=Application
Icon=runjs.png
StartupWMClass=RunJS
Comment=Explore and experiment with JavaScript and TypeScript, visualise your ideas and get instant feedback as you type.
MimeType=x-scheme-handler/runjs;
Categories=Development
- puppy_apprentice
- Posts: 694
- Joined: Tue Oct 06, 2020 8:43 pm
- Location: land of bigos and schabowy ;)
- Has thanked: 5 times
- Been thanked: 116 times
- rockedge
- Site Admin
- Posts: 7021
- Joined: Mon Dec 02, 2019 1:38 am
- Location: Connecticut,U.S.A.
- Has thanked: 3147 times
- Been thanked: 2933 times
- Contact:
Re: RunJS - the JavaScript playground for your desktop
@puppy_apprentice Yes that might be a better solution than run-as-spot
. Add the --no-sandbox switch to the Exec line in the .desktop file. Tested and works. Though now I am using 2 different .desktop files using both methods. I do test code from some Internet sites so run-as-spot
is the better option in this case.
Code: Select all
[Desktop Entry]
Name=RunJS
Exec=/opt/RunJS/runjs --no-sandbox
Terminal=false
Type=Application
Icon=runjs.png
StartupWMClass=RunJS
Comment=Explore and experiment with JavaScript and TypeScript, visualise your ideas and get instant feedback as you type.
MimeType=x-scheme-handler/runjs;
Categories=Development