Read more of this story at Slashdot.
Read more of this story at Slashdot.
Everyone you meet is fighting a battle you know nothing about.

Be kind. Always.
See also: The guy at the gas station.
I'd like a super-simple way to write JavaScript code that runs on a server.
Let's say I want to write a simple web service that takes a chunk of text and returns a Markdown-formatted version of that text.
This is just an example.
I'd like a little editor, preferably an outliner, that has a simple File menu.
When I create a new script, I give it a name. Say markdowner.
It gets its parameters as a single JSON structure.
Suppose the service is deployed at hello.org. I would call the handler this way:
It would return in its body the markdown-processed version of the single string parameter.
When I make a change to the edited script, it changes the functionality of the handler. The whole thing is live.
I can include other bits of code by calling a loader routine, like this.
The loader keeps a cache, obviously. ;-)
The server-side runtime library is very important. It should be simple, even minimal. But please support all the basic string, time and math routines supported by JS in the browser.
It would be great if I had persistent globals that were around every time my code was invoked. Not limited to strings as with localStorage. Big JSON structures. Let me plug in a nice editor for those structures, so I can browse around at runtime.
Must have a good debugger, like the one running in the browser.
There must be something like this? I hope so.
Read more of this story at Slashdot.