wscraper
wscraper copied to clipboard
Is there a way to add new paths during the parse script ?
Can we add a reference to 'paths' into the vm sandbox ?
I am not sure if should add a pull-request but made the following changes: https://github.com/janober/wscraper/commit/29cf7c54e837d05fafd6a9869ebb146ce560f0b4
So now it is possible to use whatever you want in the parser. Like for example the following: ''' var modules = {console: console, whatEver: whatEver}; scraper.run(html, parseScript, modules); '''
Now you can use "whatEver" and also for exampe "console.log".