eshost icon indicating copy to clipboard operation
eshost copied to clipboard

A uniform wrapper around a multitude of ECMAScript hosts. CLI: https://github.com/bterlson/eshost-cli

Results 36 eshost issues
Sort by recently updated
recently updated
newest added

Bumps [socket.io](https://github.com/socketio/socket.io) from 2.3.0 to 2.4.0. Release notes Sourced from socket.io's releases. 2.4.0 Related blog post: https://socket.io/blog/socket-io-2-4-0/ Features (from Engine.IO) add support for all cookie options (19cc582) disable perMessageDeflate by...

dependencies

Hey @bterlson, Here's an example of a successful test run from my fork of the project: https://travis-ci.org/jugglinmike/eshost/builds/258761231 You'll need to do a little bit of administrative work before landing this...

I was chatting with @andreubotella about the Deno implementation of the `atob` and `btoa` globals specified by Web IDL (et al.) when it occurred to me that it would be...

Create a file `tmp.js` containing `'a|b'.split('|').forEach(print)`, then run `eshost tmp.js` (assuming the existence of `eshost-cli`). On my machine, at least, this produces output along the lines of ``` #### Chakra...

A recent change to the JavaScriptCore "agent" may have regressed JSC support. Commit 4e9c3ee9b2c8cb1578e5bd9af18a028890b35b4d (which was first released in eshost version 8.0.0) includes the following modification ```diff - let env...

Without exactly one space: ``` λ eshost -se "'x:y'" #### ch, jsc, sm, v8, xs x:y λ eshost -se "'x: y'" #### ch, jsc, sm, v8, xs x: y ```...

Hi, it seems eshost dosen't support jerryscript and rhino engines. Will adding two files under the agents and runtimes directories support them? If so, is it a lot of work?...

A file of: ```js throw new Error('foo'); ``` provides these results: ```sh #### ch Error: foo #### v8 Error: foo #### sm Error: foo #### jsc Error: foo ``` A...

Various console hosts now support modules, and some browsers do as well. Need implementations for every agent subclass. Here's a checklist: * [ ] ChakraCore * [x] SpiderMonkey * [x]...

The conversation begins here: https://github.com/tc39/test262/pull/1156#issuecomment-318159020 cc @ljharb @littledan @benjamingr @leobalter @jugglinmike