achudnov / jest

A research prototype of an information-flow monitor inliner for JavaScript
Other
2 stars 0 forks source link

NodeJS testing #1

Open scull06 opened 6 years ago

scull06 commented 6 years ago

Hi, I'm interested in testing JEST. I managed to install it and to instrument the code. However my concern is in how to setup the tool to NodeJS for example. How to specify a policy and use the console.log as a channel for example. Thanks inadvance

achudnov commented 6 years ago

Hi, APIs specific to Node.js are currently not supported. Their support would require writing an API wrapper for the functions and objects. In this case, that's the object "console" and the function "log". That should be pretty straightforward.

scull06 commented 6 years ago

Thanks, Should it be similar to the ESSL wrappers?