nickkolok

Results 56 comments of nickkolok

Thank you, I've read about Emscripten, and then my first thought was: could we emscript Emscripten with Emscripten to get Emscripten in browser? Sounds a bit crazy, and perharps the...

`process` is the 4th door. It has, for example, `process.bindings('fs')`, `process.env` and smth like this. Moreover, `child_process` [is the fifth](https://nodejs.org/api/child_process.html) etc. This could be reached by module-mocking. For example, special...

Good question, thnx. It would be like this: Let's imagine a project in folder `myproject`. a) Paraquiring `request`: ```js var request = paraquire('request',{builtin:{'https':true, 'http':true, 'fs':true}}); ``` What is done by...

So, you're talking about dependency chain like this: `myproject` ---> `myutil` ---> `super-request` ---> `request` Then you just can allow http/s once: `myproject` ---(paraquire with http/s perms is here)---> `myutil`...

Спасибо! Здесь символ должен экранироваться аж трижды...

И снова спасибо! Действительно, спутаны. Исправил.

Любая правильная документация - лучше, чем никакой)

I.e. you mean that `paraquire` should use another entry point? I.e. `require` looks to `index.js`, `paraquire` looks to `paraindex.js`, where should be smth honest like this: ```js module.exports = paraquire('./index.js',{builtin:{fs:true}});...

Yes, unfortunately certain misunderstanding takes place =/ So, let's step thesis by thesis. Your Thesis 1: library should describe permissions needed for it in special easy-readed file. Your Thesis 2:...

So, My Thesis 4: this work culd be done by entry point, alternative to `index.js`. Let's call it `paranodex.js`. My Thesis 5: `paranodex.js` can contain all necessary `paraquire` calls. List...