How to create an account
In this how-to guide, you'll learn how to to create a w3up account.
Anyone can use console.storacha.network (opens in a new tab) to create an account and manage their storage using a web browser. Developers can use the w3cli
command line interface or the w3up-client
Javascript library. We recommend that developers get familiar with the w3cli
since it's a powerful tool for many things you might want to do.
Using the CLI
The easiest way to create an account is by using w3cli
.
- Install the CLI from npm using your command line:
npm install -g @web3-storage/w3cli
. - Run
w3 login [email protected]
in the command line using your email address. This will send an email to your inbox with a link for validation. - Once you click on the validation link, you'll be taken to a webpage where you can enter your payment information and select a plan (like our Free tier).
- Now you have created an account.
Using console.Storacha
- Visit console.storacha.network (opens in a new tab).
- If you don't have an account, the website will ask you for your email address. Enter your email address and submit the form.
- Check your email for a message from Storacha including a link to confirm your intention to authenticate using the email you provided.
Using the JS client
- Install the client library from npm using your command line:
npm install @web3-storage/w3up-client
. - Call
client.login('[email protected]')
, and wait for the promise to resolve. This will send an email to your inbox with a link for validation. - Once you click on the validation link, you'll be taken to a webpage where you can enter your payment information and select a plan (like our Free tier).
- Now you have created an account.