Getting started examples
The web3.storage GitHub repository contains some example projects to help you get started with the web3.storage JavaScript client library. The examples are stored in the packages/client/examples directory and include code for Node.js and several browser toolchains. Each example directory has a README.md explaining how to install dependencies and run the code.
Here's a brief look at how to run the Node.js example:
- 
First, clone the web3.storage GitHub repo: git clone https://github.com/web3-storage/web3.storage
- 
Move into the NodeJS example folder and install the dependencies using NPM: cd web3.storage/packages/client/examples/node.js npm installadded 232 packages, and audited 233 packages in 10s 42 packages are looking for funding run `npm fund` for details found 0 vulnerabilities
- 
Run the put-files.jsscript, along with the associated variables:node put-files.js --token="your-token" ~/file.txt
- 
That's it! 
Running the script is easy, but to really learn how things work, you should take a look at the script itself! Open it up in a text editor and play around with the functions. One of the best ways to learn how something works is by breaking it.