Finding a domain name is hard, so why not automate it? :)
Do not clone this repository because we are going to be using a different template.
We recommend opening the vanillajs boilerplate
using a provisioning tool like Codespaces (recommended) or Gitpod. Alternatively, you can clone it on your local computer using the git clone
command.
This is the repository you need to open or clone:
1https://github.com/4GeeksAcademy/vanillajs-hello
π Please follow these steps on how to start a coding project.
π‘ Important: Remember to save and upload your code to GitHub by creating a new repository, updating the remote (
git remote set-url origin <your new url>
), and uploading the code to your new repository using theadd
,commit
andpush
commands from the git terminal.
console.log("Any string");
to show something on the console.npm run start
, if you run it locally, make sure you have node.js1 let pronoun = ['the', 'our']; 2 let adj = ['great', 'big']; 3 let noun = ['jogger', 'racoon'];
Should generate something like:
1thegreatjogger.com 2thegreatracoon.com 3ourgreatjogger.com 4ourgreatracoon.com 5thebigjogger.com 6thebigracoon.com 7ourbigjogger.com 8ourbigracoon.com
You'll need to use nested for loops in order to mix the different values together.
Your tools: For loop, string concatenation.
Add several types of extensions: .com, .net, .us, .io, etc.
Add domain hacks, for example: instead of lastOfUs.com
you can use the .us
domain like this: lastOf.us
Before the domain market was centralized and converted into a mafia controlled by Godaddy, Enom, and others, normal people like you and me were able to buy a .com
domain relatively easily.
In fact, this project was originally built in 2002 by one of the 4Geeks teachers while he was trying to find domain names to buy for several projects.
This and many other projects are built by students as part of the 4Geeks Academy Coding Bootcamp by Alejandro Sanchez and many other contributors. Find out more about our Full Stack Developer Course, and Data Science Bootcamp.
In order to prepare better for completing this exercises, we suggest the following materials