|
|
|
|
|
by giaour
1553 days ago
|
|
window.location could be repurposed as a way to get or change the current working directory? Though the idiom of "window.location = <other path>" as a navigation mechanism would not really be portable. That said, there are other browser APIs that I would love to see available elsewhere: - window.crypto as an interface over libcrypto - window.localStorage and window.sessionStorage as an abstraction over temporary files and an in-memory key/value store, respectively - window.indexedDb for an in-runtime DB à la Erlang Term Storage or MUMPS - window.opener, window.parent, window.open(), window.postMessage() for inter-process communication There's a lot to work with here if you get creative. |
|