scripting / Scripting-News

I'm starting to use GitHub for work on my blog. Why not? It's got good communication and collaboration tools. Why not hook it up to a blog?
121 stars 10 forks source link

Simple cross-network scripting, revisited, this time for JavaScript #219

Open scripting opened 3 years ago

scripting commented 3 years ago

Back in 1998, we were getting ready to simplify scripting of apps that ran on other nodes on the net.

http://scripting.com/98/04/stories/simpleCrossNetworkScript.html

The idea was that you could call a function running on another machine using the same syntax that you use to call a function on the same machine. Something like this:

[serveraddress].addUser ("bullmancuso", "They pulled me back.");

And it would add a user named bullmancuso with the indicated slogan.

What's in "serveraddress" depends on the protocol you're using to communcate with the server.

This is just syntax. You could just as easily used this syntax to make XML-RPC or REST calls.

Should we do something like this for Drummer? The question is how easy would it be to arrange this in JavaScript? Would it require a pre-processor?