📒 A JavaScript Notebook running in Container 🐳 with NodeJS support
Running Online in Play With Docker (free)
- Get Access Token by running this command in the terminal prompt:
docker logs $(docker container list | awk 'FNR==2{print $1}') 2>&1 \
| grep -E 'token=(.*)' -o | cut -c7-54
- Click the link above to access Jupyter page:
- In page paste the token in the input field to login
- 🎉 Congrats! Now you can create a NodeJS Notebook!
- Run Following command in your terminal:
docker run -d -p 8888:8888 liuderchi/jupyter-nodejs:latest
- Run following command to get Jupyter token. Then Copy it.
docker logs $(docker container list | awk 'FNR==2{print $1}') 2>&1 \
| grep -E 'token=(.*)' -o | cut -c7-54
- in browser go to
localhost:8888?token=PASTE_JUPYTER_TOKEN_HERE
$ git clone https://github.com/liuderchi/jupyter-nodejs.git
$ cd learn-js-in-jupyter
$ docker run -d -p 8888:8888 \
-v $PWD/custom:/root/.jupyter/custom \
liuderchi/jupyter-nodejs:latest
# print jupyter token
$ docker logs $(docker container list | awk 'FNR==2{print $1}') 2>&1 \
| grep -E 'token=(.*)' -o | cut -c7-54
in browser go to localhost:8888?token=PASTE_JUPYTER_TOKEN_HERE
This project is a fork from notablemind/jupyter-nodejs