diff --git a/content/tutorials/getting-started/javascript.md b/content/tutorials/getting-started/javascript.md index 213aba1f..33135929 100644 --- a/content/tutorials/getting-started/javascript.md +++ b/content/tutorials/getting-started/javascript.md @@ -20,6 +20,18 @@ Working with js-libp2p requires [node.js](https://nodejs.org) >= v16 for develop We recommend using the latest stable version of node, but anything fairly recent should work fine. If you want to see how low you can go, the current version requirements can always be found at the [js-libp2p project page](https://github.com/libp2p/js-libp2p). +This tutorial uses the following js-libp2p package versions: +``` +"@chainsafe/libp2p-noise": "^8.0.1", +"@libp2p/mplex": "^5.1.0", +"@libp2p/tcp": "^3.0.4", +"@libp2p/websockets": "^3.0.2", +"libp2p": "^0.38.0", +"multiaddr": "^10.0.1" +``` + +> Modify your js-libp2p packages if you start to experience issues to those mentioned above. + ## Create an empty project We need a place to put our work, so open a terminal to make a new directory for your project somewhere and set it up as an npm project: