mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
bf07604113
This commit adds "deno jupyter" subcommand which provides a Deno kernel for Jupyter notebooks. The implementation is mostly based on Deno's REPL and reuses large parts of it (though there's some clean up that needs to happen in follow up PRs). Not all functionality of Jupyter kernel is implemented and some message type are still not implemented (eg. "inspect_request") but the kernel is fully working and provides all the capatibilities that the Deno REPL has; including TypeScript transpilation and npm packages support. Closes https://github.com/denoland/deno/issues/13016 --------- Co-authored-by: Adam Powers <apowers@ato.ms> Co-authored-by: Kyle Kelley <rgbkrk@gmail.com>
38 lines
No EOL
559 B
Text
38 lines
No EOL
559 B
Text
*.orig
|
|
*.pyc
|
|
*.swp
|
|
.env
|
|
|
|
/.cargo_home/
|
|
/.idea/
|
|
/.vs/
|
|
/.vscode/
|
|
gclient_config.py_entries
|
|
/target/
|
|
/std/hash/_wasm/target
|
|
/tools/wpt/manifest.json
|
|
/third_party/
|
|
/test_napi/node_modules
|
|
/test_napi/build
|
|
/test_napi/third_party_tests/node_modules
|
|
|
|
# MacOS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
|
|
# Flamegraphs
|
|
/flamebench*.svg
|
|
/flamegraph*.svg
|
|
|
|
# WPT generated cert files
|
|
/tools/wpt/certs/index.txt*
|
|
/tools/wpt/certs/serial*
|
|
|
|
/ext/websocket/autobahn/reports
|
|
|
|
# JUnit files produced by deno test --junit
|
|
junit.xml
|
|
|
|
# Jupyter files
|
|
.ipynb_checkpoints/
|
|
Untitled*.ipynb |