DonJayamanne/typescript-notebook

How to convert a Node.js Notebooks to a different format ??

Opened this issue · 1 comments

From the command line, a Jupyter notebook can be converted to a different format using the following command:

$ jupyter nbconvert --to <output format> <input notebook>

Is the same possible with Node.js Notebooks??

Unfortunately no. You could

  • Create a notebook with the extension *.ipynb and use the same extension to run code using the same kernel in vscode.
  • & then convert the ipynb using jupyter.

Hope this helps, let me know if it doesn't