Results 255 comments of Nicolas Riesco

My understanding is the `%%javascript` runs your code in the jupyter notebook console (for most browsers, press Command+Option+J (Mac) or Control+Shift+J (Windows, Linux, ChromeOS) to open the console). You could...

Your experience with ES6 modules depends on your Node version. I've just tested the REPL in the current version (v13.9.0) and this is the error Node throws: ``` $ node...

Last time I checked (node.js v14.13.0), the REPL doesn't support this use yet. It fails with: ``` $ node Welcome to Node.js v14.13.0. Type ".help" for more information. > import...

Re `esm`, unfortunately `esm` doesn't work on `vm`. See https://github.com/n-riesco/ijavascript/issues/215#issuecomment-678268578 I haven't seen any activity in https://github.com/standard-things/esm/issues/886 ,

The issue is not related to the extension used for a module. I wouldn't expect the use of `type` to help.

From #239, alternatives to a static import: * an ES5 import: `var { Gitlab } = require('@gitbeaker/node');` * [a dynamic import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#dynamic_imports): `import('@gitbeaker/node').then((module) => {global.Gitlab = module.Gitlab});`

Hi @prothSFDC I'm sorry it took me so long to come back to you. It's been hard to find chunks of time long enough to look into this. These are...

I'd try to install the IJavscript kernelspec using full paths, like this: `ijsinstall --spec-path=full`

One can run `jupyter kernelspec list --json`, to see the difference between `ijsinstall --spec-path=full` and `ijsinstall --spec-path=none`.

`zeromq` has recently changed they way it builds and distributes binaries. Unfortunately, this means that the binaries fail for distributions such as Debian 10. Anyone affected by these incompatible binaries,...