const limit = 15;
let count = 1;
Array(limit).fill(0).reduce((acc, _, index) => {
const spaces = ' '.repeat(
Math.abs(limit - count) / 2
);
An essential tool in my daily JS development
Exploring JavaScript has never been easier. Live feedback as you type, with per-line results makes it super clear what your code is doing.
With RunJS you have access to Node.js and Browser APIs, including full DOM access. This gives you a level of versatility that's not possible in a standard REPL or Chrome console.
Babel and TypeScript support enables you to write modern, up-to-date syntax.
Experiment with new libraries and frameworks
Essential for multi-tasking
See code suggestions while you type
Create your own snippet collection
See type related errors and warnings
Quickly see type information and relevant documentation
Easily store important data and access it in your code
Ayu, One Dark, Shades of Purple, SynthWave '84
Awesome JS playground here. Its similar to Swift playgrounds - every line of JS code will be evaluated separately, with output printed on the right. Great tool for exploring JS!
RunJS - a desktop app that serves as a JavaScript scratchpad. This is one of my favorite tools for debugging and testing things quickly.
If you want to know what a piece of JS code will do, there's no substitute for just RUNning it and seeing the result! RunJS has become an essential tool in my daily JS development, writing, and teaching work, unseating a bunch of other tools like consoles, CLIs, and in-browser code editors.
This. is. awesome: RunJS, a JavaScript playground for Mac. Supports TypeScript, Babel transpilation, Node and browser APIs altogether, import Node modules from a folder, and more.
Was looking for a simple Javascript REPL Mac app and ran across RunJS.. this is perfect. simple little sandbox to tinker with JS before writing it for real in my main environment.
I teach code school and mentor junior engineers at work. When there’s a question about the language, it is so easy to just throw RunJS up on the screen and run little experiments in a safe and clear environment until everybody’s got the behavioural info they need to make a choice.
So grateful to have discovered RunJS. It's so much easier to practice JavaScript when you can see the solution in real time!
If you want to quickly see what a wee JavaScript snippet evaluates to, RunJS is a delightful way to find out. It's free. And pretty. And cross-platform. I dig it.
If you've never tried out RunJS before, give it a go! It's a JavaScript scratchpad which can also run your code. The best feature? It supports npm modules!
A good tip for those who are studying JavaScript like me: RunJS! It's a playground that auto-evaluate your code as you type and you can also import libs and stuff.
what a great tool! I've always had a problem with testing something in Javascript quickly, I always end up either in codesanbox, chrome devtools or my vscode to run a server to test ideas... but I found this today and I'm amazed by it!
The more I use RunJS, the more I like it and wonder what I have been doing in the past when I wanted to test something in JS.
Among my side hustles, I tutor coding bootcamp students via video chat. When screen sharing, RunJS has become my favorite way to isolate and explain bugs & expected behaviors. Awesome app, check it out!
Really impressed with Javascript scratchpad tool RunJS. Useful while learning new concepts and trying it out.
I've always had a separate VSCode tab open in case I need to thoroughly test code snippets, which has over time become quite a hassle; that completely changed today when I found out about RunJS, a JavaScript playground that gives you instant feedback as you type!