All Projects → sindresorhus → Sublime Jsrun

sindresorhus / Sublime Jsrun

Run JavaScript in the browser - Sublime plugin (macOS)

Programming Languages

python
139335 projects - #7 most used programming language

JsRun

Sublime plugin to run JavaScript in the browser

Lets you quickly run code from Sublime directly in the browser. You can use it to experiment with manipulating websites, overriding existing code, or any other crazy things you come up with. Let me know if you use it for anything interesting.

Install

Install JsRun with Package Control and restart Sublime.

Getting started

Select some code or just highlight a line and choose Run JavaScript in the browser in the Command Palette (Cmd+Shift+P). This will then run the command in the active tab in the frontmost browser window. Switch to the browser window to see the result or have them in split-window to see the result instantly.

Remember to open the Console in Dev Tools to see console.log output.

Options

Set your preferred browser in the settings: chrome (default), chrome_canary, safari, opera

(Preferences > Package Settings > JsRun)

Example:

{
	"browser": "chrome_canary"
}

Keyboard shortcut

You can also set up a keyboard shortcut to run the command by opening up "Preferences > Key Bindings - User" and adding your shortcut with the js_run command.

Example:

[
	{
		"keys": ["alt+super+j"],
		"command": "js_run"
	}
]

Supported browsers

Currently supports Chrome, Chrome Canary, Safari and Opera on OS X. Firefox doesn't expose JS to AppleScript.

License

MIT © Sindre Sorhus

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].