Not only is it a simple editor of 300b, but you can also copy-paste the code snippets into a bookmark URL or directly into the address bar making it available offline as well.
See also 💻 ExText which is the same thing but with code highlighting and a SublimeText-like editor.
I combined elements from Mini Code Editor by xem to create this live code editor with dark mode and spell check disabled.
*I'm not sure if these are technically "bookmarklets" since it was defined as code you can drop into bookmarkets that start with javascript:
.
This is great for prototyping or using as a base-line for creating your own custom code editing tool to speed up development.
This is avoids the problem of the browser crashing as you're typing out a while
loop.
data:text/html,<textarea id=d onkeypress=d.spellcheck=0;e=event;k=e.keyCode;(e.ctrlKey&&k==13)||k==10?f.srcdoc=d.value:0 style=resize:none;filter:invert(1)hue-rotate(180deg)></textarea><iframe id=f></iframe><style>*{box-sizing:border-box;margin:0}textarea,iframe{width:50%;height:100%;vertical-align:top}
data:text/html,<textarea id=d onkeypress=d.spellcheck=0;e=event;k=e.keyCode;(e.ctrlKey&&k==13)||k==10?f.srcdoc=d.value:0 style=resize:none;filter:invert(1)hue-rotate(180deg)></textarea><iframe id=f></iframe><style>*{box-sizing:border-box;margin:0}textarea,iframe{width:100%;height:50%}
This is great for HTML/CSS coding since you're less concerned about running into JavaScript issues. Just be careful not to write a while
loop.
data:text/html,
implies that the following text will be returned as an HTML document.
<!-- The browser's spellcheck doesn't like code -->
<textarea id=d spellcheck=false onkeypress={...} style={...}></textarea>
<!--
Detect when Ctrl + Enter is pressed
This is where the code in the textarea is put into the iframe:
f.srcdoc = d.value
-->
onkeypress=
e = event;
k = keyCode;
(e.ctrlKey && k == 13) || k == 10 ? f.srcdoc = d.value : 0
style =
/* Removes the resize capability since it grows/shrinks with the window. */
resize:none;
/* Dark mode for the textarea. Optional */
filter: invert(1) hue-rotate(180deg)
<!-- This is where the code is run -->
<iframe id=f></iframe>
<style>
/* Makes sure textarea and iframe are flush in the window */
* { box-sizing: border-box; margin: 0 }
textarea, iframe {
/* Flip these values to change to horizontal layout. */
width: 50%;
height: 100%;
/*
In Chrome, these two elements don't stay flush to the top of the window
in vertical layout only.
*/
vertical-align: top;
}
/* No close style tag since it works without it and saves 8 characters.*/
Install global dependencies: serve, concurrently, opener. These packages enable serving the code on a static server and opening it on your default web browser.
npm i
Run the code in src
directory:
npm start
This one is good to memorize.
data:text/html,<html contenteditable>
This is a fancy one with style from PC World.
data:text/html,<body contenteditable style="font:2rem/1.5 monospace;max-width:60rem;margin:0 auto;padding:4rem">
It's large, but it's packed with features:
- Displays character counts
- Vertical layout
- Contains code template
I'm going for practical use and not so much minimalism. I use this: (437b)
data:text/html,<p id=c style=position:absolute;top:0;right:4></p><textarea id=d spellcheck=false onkeypress=c.innerHTML=d.value.length;e=event;k=e.keyCode;(e.ctrlKey&&k==13)||k==10?f.srcdoc=d.value:0 style=resize:none;filter:invert(1)hue-rotate(180deg)><p id=o></p>%0d<script>%0do.innerHTML = 0;%0d</script></textarea><iframe id=f></iframe><style>*{box-sizing:border-box;margin:0}textarea,iframe{width:50%;height:100%;vertical-align:top}
My code template:
<p id=o></p>
<script>
o.innerHTML = 0;
</script>
This is basically what I start with for most any coding that I do. I usually test the output of something.
- Mini Code Editor by xem
- Full Editor HTML/CSS/JS (1kb) by xem, which also allows code-sharing via URL.
- Live Editor by tomhodgins
- Turn any browser tab into a basic text editor (PC World)